How can I remove table header?By Milan Jovanovic on 20/07/18 in

Just add this code below in Custom wpDataTables CSS under the “Custom JS AND CSS” in main settings of wpDataDables.

.wpdt-c .wpDataTablesWrapper table.wpDataTable thead {
display: none !important;
}

This will be affected on all tables, but if you want just for specific one then insert this code on the page where is that table between the style tag (<style>Code here</style>)

<style>
.wpdt-c .wpDataTablesWrapper table.wpDataTable thead {
display: none !important;
}
</style>
Was this answer helpful ? Yes No

Comments are closed.