• Resolved brianpg0

    (@brianpg0)


    Pagination on this page has been working fine but now is missing, search and the view number of rows is also fine.

    I have not used this page since the last update so cannot say if went missing before or after.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    thanks for your post, and sorry for the trouble.

    The cause for this is the “Views for WP Forms” plugin that is installed on your site. In its CSS file
    /wp-content/plugins/views-for-wpforms/assets/css/wpforms-views-display.css
    it contains the CSS code

    /* Datatbales */
    .dataTables_info, .dataTables_paginate{
    	display:none;
    }

    which hides the pagination controls. Unfortunately, it does so for all tables on the site, and not just its own tables…
    They should fix this in their code and simply not load the pagination for their tables, if they don’t want to show it, instead of hiding it afterwards.

    To make it visible again, please add this to the “Custom CSS” textarea on the “Plugin Options” screen of TablePress:

    .dataTables_info,
    .dataTables_paginate {
    	display: block;
    }

    Regards,
    Tobias

Viewing 1 replies (of 1 total)
  • The topic ‘Tablepress pagination missing’ is closed to new replies.