Aki Hamano
Forum Replies Created
-
Forum: Plugins
In reply to: [Flexible Table Block] Mobile View CSS Not WorkingI do not provide texting or support in a closed space. However, since CSS issues can be related to themes, the cause cannot be determined without checking the actual code. It would be helpful if you could show us a test page after the site is published. Alternatively, you may wish to have a specialist investigate.
Forum: Plugins
In reply to: [Flexible Table Block] Mobile View CSS Not WorkingHi,
Can you show me a web page where the Flexible Table Block is actually present in the content and the additional CSS is written?
Forum: Plugins
In reply to: [Flexible Table Block] Hide Empty RowsThere is no such method at present. You will probably have to control it yourself with JavaScript.
Forum: Plugins
In reply to: [Flexible Table Block] How to copy table contents inside a formatted table?I will consider addressing this in a future version.
Forum: Plugins
In reply to: [Flexible Table Block] How to copy table contents inside a formatted table?Thanks for the report. Unfortunately, both this plugin and the default table block cannot be pasted against multiple cells of an existing table at once.
Forum: Plugins
In reply to: [Flexible Table Block] Error message “Blocked a Frame”Does your problem occur when you insert the Embed block? If so, I don’t think it has anything to do with this plugin.
Forum: Plugins
In reply to: [Flexible Table Block] Pseudo headers with Stack on mobileNo plans at this time. Custom attributes would also be controlled by JavaScript.
Forum: Plugins
In reply to: [Flexible Table Block] Pseudo headers with Stack on mobileConsidering the balance with other options, I’m not considering a feature that would significantly change the layout in that way. Perhaps you can address this by adding your own JS and CSS.
Forum: Plugins
In reply to: [Flexible Table Block] Duplicate a column / a row?Currently, duplication of rows and columns is not supported. I would consider it as a future feature.
You can change the color of odd-numbered or even-numbered rows from the global settings. How about setting these in reverse?
https://raw.githubusercontent.com/wiki/t-hamano/flexible-table-block/images/global_setting_02.jpg
However, the current version applies stripe colors to header cells as well, but you may want to override them from the cell settings.
Thanks for the suggestion.
a) the header should matain its own colour
I think this makes sense. The default table block also does not apply a stripe color to the header cells. I will consider implementing this in the next update.
b) the first coloured stripe row should be the next one
Default table block has odd-numbered rows colored. Therefore, I would like to maintain the current specifications in this regard.
Forum: Plugins
In reply to: [Flexible Table Block] sitewide js & cssA filter hook exists to control this.
add_filter( 'should_load_separate_core_block_assets', '__return_true' );
Also, this plugin does not load JavaScript at the frontend.
- This reply was modified 1 year, 10 months ago by Aki Hamano.
Forum: Plugins
In reply to: [Flexible Table Block] 編集者アカウントで編集する際にエラーこんにちは。以下2パターンで検証してみましたが、再現する事は出来ませんでした。
パターン1
- 管理者権限でテーブルを作成
- 「追加CSSクラス」にクラス名を設定
- 編集者アカウントで再ログイン
- 投稿を開く(ブロックは壊れない)
- 「追加CSSクラス」のクラス名を変更(ブロックは壊れない)
- 記事を保存してリロード(ブロックは壊れない)
パターン2
- 編集者権限でテーブルを作成(ブロックは壊れない)
- 「追加CSSクラス」にクラス名を設定(ブロックは壊れない)
- 記事を保存してリロード(ブロックは壊れない)
こちらでは再現出来なかったため、再現出来る具体的な手順が分かれば教えていただけますでしょうか。
また、WordPressのバージョンは何でしょうか。
Forum: Plugins
In reply to: [Advanced Query Loop] Warning error is displayed.Thanks for the quick fixes!
Forum: Plugins
In reply to: [Flexible Table Block] How to add ID to the whol row?Unfortunately, it is not possible to addan id or class to the
tr
element.
If you need to specify a selector in some libraries, the following approach may be possible.// Target all tr elements .wp-block-flexible-table-block-table tr // Target a specific tr element .wp-block-flexible-table-block-table tr:nth-child(X)