Aki Hamano
Forum Replies Created
-
Forum: Alpha/Beta/RC
In reply to: WordPress 7.0 RC1 Classic Theme Stylebook BrokenThanks for the report. This issue should be resolved in Gutenberg.
Forum: Plugins
In reply to: [Flexible Table Block] Changelog errorThat’s an error in the changelog. I dropped support for 6.8, not 6.9.
Forum: Plugins
In reply to: [Gutenberg] Updating Gutenberg 22.6.0I’ve identified the cause. We can’t be certain that this is a theme issue. It may need to be fixed on the Gutenberg side. See https://github.com/WordPress/gutenberg/pull/75398#issuecomment-3967610213 for more details.
Update: The cause I discovered is related to the Neve theme. The problem @fvbussel is experiencing is probably due to a different cause.
- This reply was modified 2 months, 1 week ago by Aki Hamano.
Forum: Plugins
In reply to: [Gutenberg] Updating Gutenberg 22.6.0I got no error message, just an empty editor screen.
It’s likely a client-side, i.e. JavaScript, error. Could you please show us the contents of your browser’s console tab?
- Right-click on a page and select Inspect.
- Click the Console tab.
- There should be some kind of red message.
Forum: Plugins
In reply to: [Custom HTML Block Extension] Crash when opening Gutenberg code editorThanks for the report.
Strangely, I noticed that this issue only occurs in Firefox, so I’ll investigate and see if I can fix it.
Forum: Fixing WordPress
In reply to: v6.9 updated automatically and broke the designIt might be related to this topic. Could someone please test if the following code solves the problem?
add_filter( 'should_load_separate_core_block_assets', '__return_false', 100 );This is to see if it’s related to the performance improvements in 6.9. See https://make.ww.wp.xz.cn/core/2025/11/18/wordpress-6-9-frontend-performance-field-guide/.
Forum: Fixing WordPress
In reply to: WordPress 6.9 broke site layoutCould someone please test if the following code solves the problem?
add_filter( 'should_load_separate_core_block_assets', '__return_false', 100 );This is to see if it’s related to the performance improvements in 6.9. See https://make.ww.wp.xz.cn/core/2025/11/18/wordpress-6-9-frontend-performance-field-guide/.
Forum: Plugins
In reply to: [Flexible Table Block] Issue merging cellsHi, that behavior is by design of HTML table itself. There are several solutions, but the simplest is to apply an explicit height to the table, like this:
.wp-block-flexible-table-block-table > table {
height: 300px;
}Forum: Plugins
In reply to: [Flexible Table Block] スクロール表のモバイル表示についてこんにちは。サイトの相性かと思いますが、一つの解決方法は以下CSSを追加することです。
#content {
overflow: hidden;
}ただし、テーマ・サイト全体をチェックしているわけではありませんので、自己責任でご利用ください。
Forum: Plugins
In reply to: [Flexible Table Block] Related to add List in table cells- Just editing the src directory won’t do anything. You need to build the sources.
- There is no core/list format.
If you don’t understand the meaning of these two things, it will be difficult to implement it yourself. I recommend that you ask someone to do the work.
Forum: Plugins
In reply to: [Flexible Table Block] Related to add List in table cellsI’d like to close this topic is as a duplicate of the following topic:
https://ww.wp.xz.cn/support/topic/related-to-add-list-in-table-cells/page/2/
Forum: Plugins
In reply to: [Flexible Table Block] Related to add List in table cells@kamaldev If you find it difficult to customize it yourself, it’s a good idea to ask a knowledgeable engineer to do the work. Sorry, but my policy won’t change, so I won’t be replying to this topic anymore.
Forum: Plugins
In reply to: [Create Block Theme] Plugin’s value for LIVE environment?Hi, as far as I know, simply activating this plugin doesn’t do anything. If you’re not going to use any of the features it provides, you should be able to uninstall it safely.
Forum: Plugins
In reply to: [Flexible Table Block] Related to add List in table cellsSorry, but my opinion remains the same. If you absolutely need that functionality, feel free to customize or fork my plugin and add the functionality.
Forum: Plugins
In reply to: [Flexible Table Block] Related to add List in table cellsWhile it is technically possible to implement that functionality, I don’t think it’s the role of this plugin.
If you absolutely need that functionality, feel free to customize or fork my plugin and add the functionality.