• Resolved vamban

    (@vamban)


    I did setup your plugin with ACF and working great. But unfortunately the table title not showing when i print table via template using ACF: TablePress.

    But title is working without any issues in traditional post pages.

    Do you help me to show the title of the table?

    https://wordpress.org/plugins/acf-tablepress/

Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author TylerDigital

    (@tylerdigital)

    Hi there—

    I saw your message on our contact form and just got an email back to you— a temporary fix is in the email, and a more permanent one hopefully back to you soon!

    Thread Starter vamban

    (@vamban)

    Thanks for your heads up

    Let me try the same and revert back to you soon.

    Thread Starter vamban

    (@vamban)

    For the sake of convenience of other wordpress community users i am publishing your suggested code here.

    Definitely sounds like a problem on our end! it looks like I hard-coded ‘print_name’ to false when we generate the table as rendered html. I should be able to get a fix in the next couple days, but in the meantime, you can get the title to show up by setting the return format to “Table ID” and replacing “the field ();” with the following php code:

    <?php
    $tablepress_id = get_field( 'your_field_here' );
    $args = array(
    'id' => $tablepress_id,
    'use_datatables' => true,
    'print_name' => true
    );
    if ( function_exists( 'tablepress_print_table' ) ) {
    tablepress_print_table( $args );
    }
    Plugin Author TylerDigital

    (@tylerdigital)

    Hi there—

    You should now see an update for ACF: TablePress in your dashboard. After updating to 1.1, the table should reflect your settings on TablePress.

    Let us know if you have any more questions!

    Thread Starter vamban

    (@vamban)

    Hi tyler

    Thanks for your quick update via WordPress repository plugin update. But you have not updated the plugin compatibility version and still showing it as compatible up to 4.2.4.

    http://prntscr.com/8dwkeo

    Thread Starter vamban

    (@vamban)

    Title Seems Working now with H1 class, is it possible to set different class for the same?

    Plugin Author TylerDigital

    (@tylerdigital)

    Thanks for the heads-up on the compatibility! We’ll get that updated right away.

    Our plugin basically just outputs the shortcode, so any styling should be handled under TablePress’s settings themselves. You can manage custom CSS under TablePress > Plugin Options, and set extra CSS classes for a specific table under the Table Options heading on the “Edit Table” page.

    Thread Starter vamban

    (@vamban)

    Hi tyler

    Its very rare to find WordPress plugin like yours with awesome support and quick feedback. I am really lucky to be the user of your ACF Tablepress add on.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Table Title now showing’ is closed to new replies.