Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter jpn21

    (@jpn21)

    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,
    JP

    Thread Starter jpn21

    (@jpn21)

    HI 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 9 months, 3 weeks ago by jpn21.
    jpn21

    (@jpn21)

    HI,
    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,
    JP

    jpn21

    (@jpn21)

    Hello,
    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 4 years ago by jpn21.
Viewing 4 replies - 1 through 4 (of 4 total)