Johann Heyne
Forum Replies Created
-
Forum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] Using table within Group field typeIf ‘table’ is in your group field, you have to get the table like this…
$zone_4 = get_field('zone_4'); $table = $zone_4['table'];Forum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] Two tiny typos in readme.txtHi,
Fixed! Thanks for that hint, I appreciate that very much.
Cheers,
JohannForum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] Feature Request: Add Tab IndexingHi,
thanks for the request. I add this feature to version 1.2.
Cheers,
JohannForum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] Request feature: Import Excel tableThanks for the request. Import options are on the list for a pro version I´m working on right now.
Cheers
JohannForum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] Default column and row say and headerHello Edir,
thanks a lot for your feedback, I appreciate that very much.
All your points are on my list.
Coping existing tables of other posts is a good idea. I will try to find a smart solution.
The tooltip interface was born because it was the most stable implementation to start with. But you are right. There must be several types of content. At this point I have simple text and the WordPress editor (pre-definable button sets for the editor is planed). But this content types list is open to be extended with others and appropriate input tools. Even validating and calculation functionality is a point I think about. But this is not to expect for the first release.
If have implemented field settings for optional providing styles (CSS-classes) to select for the whole table, columns, rows and cells. So this is an unlimited solution for providing styling options.
It is right now possible to predefine a table and its content in the field setting with the same table editor for editing tables. There will be also a way to delimit almost functionalities in the field settings for editing a table.
Cheers
JohannForum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] Default column and row say and headerGood question. I think there will be a message on the WordPress repository plugin page and a message in the WordPress admin if the free version is installed.
Forum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] Default column and row say and headerSorry, but you cant´t yet. Im working on a Pro version with a lot of features like predefining a table. The launch is expected in spring 2018.
Forum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] Pedefined Table ContentSorry, this is not possible. In an upcoming Pro-Version next year it will be possible.
Forum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] Where add this codes?The code example to get a table field´s data and rendering the table has to be placed in a template. The ACF field must, of course, be available for this template.
Forum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] Add/Update TableI´m sorry, but no. It turned out, that updating table data, especial adding data in a simple way but keeping the tables data automatically consistent, is not a quick and easy thing to implement. So I put it on my list for the pro version of the plugin I´m working on. Unfortunately, I have only a little time left beside my client´s work for doing that and I can´t make any announcement for the release date of the pro version.
Cheers, Johann
- This reply was modified 8 years, 11 months ago by Johann Heyne.
Forum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] Latest update broke tableHi, after some testing, I did not found a situation, that replicates that issue. Is there a way to get my hands on your project to investigate the issue?
Thanks,
JohannForum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] Latest update broke tableThanks for giving me that hint. I´m going to investigate this issue.
JohannForum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] Table field in Twig fileHi,
I´m not into this template engine, but in some way it should work like…
<?php echo $twig->render( 'template.html', array( 'table' => get_field( 'my_table_field' ) ) );template.html…
{% if table|length > 0 %} <table> % if table.header|length > 0 %} <thead> <tr> {% for header in table.header %} <th>{{ header.c }}</th> {% endfor %} </tr> </thead> {% endif %} % if table.body|length > 0 %} <tbody> {% for row in table.body %} <tr> {% for cell in row %} <td>{{ cell.c }}</td> {% endfor %} </tr> {% endfor %} </tbody> {% endif %} </table> {% endif %}- This reply was modified 9 years, 3 months ago by Johann Heyne.
- This reply was modified 9 years, 3 months ago by Johann Heyne.
- This reply was modified 9 years, 3 months ago by Johann Heyne.
Forum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] Images in table fieldsHi,
I would like to recommend first to check if the repeater field can be used.
The Pro-version is making progress, but it turned out, that tables have a wide field of usage and different feature requirements. I can´t implement it all by myself. So I lost time to get clear about, what are basic functionalities and what should be extendable by others and how.
Greetings,
JohannForum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] Disable overlay to insert text?Hello torbent,
I´m sorry, but at the moment, there is no other solution than having this blue editing box.
Greetings,
Johann