jpn21
Forum Replies Created
-
Hi,
Very well, understood.
We will check for more options on this with Elementor Pro. If any positive update, I will share results on this thread.
Thank you again for your great support.
Regards,
JPHI Tobias,
Thanks for the quick response.
Yes, Dynamic Tags are used to insert customized data based on various sources, including ACF.
We are using Advanced Custom Fields to manage and assign various products Specs data tables.
Each product page dynamically pulls its related Specs data table based on the assigned TablePress Table id managed by ACF.
Currently we are running the following custom shortcode method :add_shortcode( 'table-acf', 'dino_table_acf_shortcode' ); function dino_table_acf_shortcode( $atts ) { $atts['id'] = do_shortcode( "[acf field={$atts['acf_field']}]" ); return tablepress_get_table( $atts );[table-acf acf_field=wd_chart /]
Now we would like to use the build-in TablePress widget to simplify the process.
Regards,
JP- This reply was modified 8 months, 3 weeks ago by jpn21.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] ACF Value in TablePress FilterHI,
Yes it is working great.Table ID returns properly using
[table-acf acf_field=wd_chart /]Actually, displaying in double nesting (Toggle widget (mm/in) embedded in TAB widget (woocommerce single product)
Using CVS import including mm/in then assigned filtered shortcodes to display corresponding rows for each Toggle section.
mm
[table-acf acf_field=wd_chart hide_rows=all show_rows=1-4 /]
in
[table-acf acf_field=wd_chart hide_rows=all show_rows=6-9 /]Very flexible plugin. thank you for your great support.
Cheers,
JPForum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] ACF Value in TablePress FilterHello,
Does this method also apply for the table ID?add_shortcode( 'table-acf', 'dino_table_acf_shortcode' ); function dino_table_acf_shortcode( $atts ) { $atts['id'] = do_shortcode( "[acf field={$atts['acf_field']}]" ); return tablepress_get_table( $atts );I assigned the table id value to ACF field
[table acf_field=wd_chart_mm /]I get a return [table “” not found /]
- This reply was modified 3 years, 11 months ago by jpn21.