Johann Heyne
Forum Replies Created
-
Hi Amy,
thanks for pointing out the possible cause of the problem. With the next release I will add “!important” to the font-size and line-spacing of the blue text box.
I hope that this will prevent the problem from occurring again.
Cheers,
JohannHi,
I could not replicate that issue.
1. I registered a block in edit mode and assigned a table field to the block.
2. Then I added this block to a page and the table field input appears and the blue text box worked.
3. Then I switched the block to preview and the blue text box in the sidebar worked also.What I`m missing?
Your second image shows what? Is this the small sidebar?Cheers,
JohannHowdy,
thanks much for reporting that issue. I think, I’ll have that fixed in a couple of days.
Cheers,
JohannForum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] Short CodesForum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] Gutenberg drag to reorder not workingHi,
a new version of the plugin with the Gutenberg sortable fix will be available in the next 24 hours.
Forum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] Gutenberg drag to reorder not workingHi,
thanks for reporting the drag issue in gutenberg. I´m going to fix this.
Adding warning before deleting a row has its pros and contras. A warning is an extra click and can annoying if you have to delete many rows. A warning can be helpfull to unwanted clicks on the remove button. But removing a row is not set in stone, you can allways reload the page to get back before starting editing the page or use revisions. I just tried to keep it simple as possible.
Cheers,
JohannForum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] Shortcode conditionalHi nanny7,
you can extend the tablefield shortcode as much as you want with more conditionals and fields.
Cheers,
JohannForum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] Importing dataHello wildcard2092,
No standard importer will be able to import data into an ACF table field.
Adam Smith has developed an importer for ACF table fields: https://github.com/acodesmith/advanced-custom-fields-table-importer. I haven’t tested it myself yet.
A Pro version of the ACF table field with all common table functionalities has been in development for a long time, currently works very promisingly, but still requires detailed work.
Cheers,
JohannForum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] Add support for update_field on termHi Dawid,
thangs for the request. I updated the code for version 1.3.11. You can get and test this version until it is released by…
https://downloads.wordpress.org/plugin/advanced-custom-fields-table-field.1.3.11.zipPlease let me know, if this version solves the problem.
Cheers,
Johann- This reply was modified 5 years, 6 months ago by Johann Heyne.
Forum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] Not showing revisions for tableHi Swati,
I discussed this issue with Eliot the ACF developer in April 2019 and he had the solution on his to-do list. However, he has not yet adapted the corresponding code or has not yet implemented the necessary filter. In the free version of the plugin, the revision table data is at least displayed as serialized data as it is in the database. Not so the pro version.
I can not do anything to solve that by my own.
I´m sorry,
Johann- This reply was modified 5 years, 7 months ago by Johann Heyne.
Thanks for the hint. Version 1.3.10 should fix that.
Cheers,
JohannForum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] It is possible to add html to the fieldI´m working on a Pro version with a lot functionalities. Progress is very slow with the Pro but it is allmost done.
Forum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] It is possible to add html to the fieldTyping HTML should be possible.
Forum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] Line breaks within cellHi,
yes, line breaks within a cell (admin and output) is possible. please see: https://wordpress.org/plugins/advanced-custom-fields-table-field/##how%20to%20handle%20line%20breaks%3F
Cheers,
JohannForum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] Apply class to second columnHi,
this can be done without a class on all cells of the second column:
.table tbody td.nth-child(2) { color: red; font-weight: bold; }This style works on every 2th table data cell in the tbody element of a table with the class .table
Cheers,
Johann- This reply was modified 6 years, 4 months ago by Johann Heyne.