• Resolved aralize

    (@aralize)


    Hello,

    I want to remove the row with the column title at the bottom of the tables, but I can’t find the setting. Maybe this is a premium option?

    Thanks !

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Passionate Programmer Peter

    (@peterschulznl)

    Hi @aralize,

    You can remove the table footer of a publication with CSS. The following CSS will remove the footer of all publications:

    table.wpda-datatable tfoot {
    	display: none;
    }

    You can use the table id to remove the footer of a specific publication. For example:

    $mytable10 tfoot {
    	display: none;
    }

    Hope this helps,
    Peter

    Thread Starter aralize

    (@aralize)

    Hello Peter,

    Thanks a lot for your help, it worked!

    There is also a keyword in CSS to remove the row under the table “Showing 1 to 3 of 3 entries” ?

    Thank you,

    Aralize.

    Plugin Author Passionate Programmer Peter

    (@peterschulznl)

    Hi Aralize,

    You can use the dom option in advanced table options the hide the table information summary. This is documented here:
    https://wpdataaccess.com/docs/documentation/data-publisher/advanced-settings/

    The default value for the dom options is “lfrtip”, where i represents the table information summary. The dom option allows you to change the order in which elements are shown or completely remove/hide elements. Just enter { "dom", "lfrtp" } in advanced table options to remove the summary.

    The plugin uses jQuery DataTables for publications. More information about the dom options can be found here:
    https://datatables.net/reference/option/dom

    Here is the complete list of options:
    https://datatables.net/reference/option/

    Most of them are available in the plugin through field advanced table options. Some are only available in the premium.

    Hope this helps,
    Peter

    Thread Starter aralize

    (@aralize)

    Hi,

    Thank you very much for all his explanations which allowed me to learn much more than expected!

    My problem is solved, thank you for your speed and support!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove column title at the bottom of the table’ is closed to new replies.