Holiday Notice – Support Unavailable on April 18 and April 21
We just wanted to let you know that our support team will be offline on Friday, April 18th (Good Friday) and Monday, April 21st (Easter Monday) due to the holidays.
We'll be back on Tuesday, ready to assist you!
In the meantime, if you need any help, feel free to:
-
Use the support widget in the bottom right corner on our websites (Amelia and wpDataTables) — our latest AI-powered assistant is there 24/7 to help with basic and intermediate questions,
-
Browse our detailed documentation (Amelia, wpDataTables)
-
Explore helpful articles,
-
Or check out our YouTube channels for video guides!
Amelia YouTube Channel
wpDataTables YouTube Channel
Thank you for your understanding, and we wish you a wonderful holiday weekend!
Hi,
I am trying to hide the columns header to integrate in a page a single line MYSQL query answer.
I have seen the answer to PUBLIC TICKET #1090596. It does not say where and how to integrate the provided code.
Regards
Didier
Hi Didier,
Thank you for your purchase.
Sorry for late response.
At the end of last week we didn't work because of the national holiday.We are located in Serbia and our working time is from 10:00 to 17:00 CET. business days.
Just add this code in Custom wpDataTables CSS under the "Custom JS AND CSS" in main settings of wpdatatables.
This will be affected on all tables, but if you want just for specific one then insert this code on page where is that table between the style tag.(<style>Code here</style>)
Kind Regards,
Isidora Markovic
wpDataTables: FAQ | Facebook | Twitter | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Amelia demo sites | Docs
You can try our wpDataTables add-ons before purchase on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables
Thanks Milan,
The code placed in Custom wpDataTables CSS is working fine for all tables. However I wanted to hide the table header only for one table and I cannot figure from your explanation where I should locate the code. "on page where is that table between the style tag.(<style>Code here</style>)" does not make sense. What page are you talking about?
Best regards
Didier
Hi Didier,
If you want this css just for specific table then you have to insert this code page where you insert shortcode of that table between the style tag like this:
<style>
table.wpDataTable thead{
display:none !important;
}
</style>
[wpdatatable id=1]
You can see also on attachment how to insert this on page or post where you use wpdatatables shortcode.(attachment)
Kind Regards,
Isidora Markovic
wpDataTables: FAQ | Facebook | Twitter | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Amelia demo sites | Docs
You can try our wpDataTables add-ons before purchase on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables
Thanks Milan,
Yes it works fine. But I have to insert that every time I call upon the [wpdatatable id=x]. Is there a way to embed it somewhere in the table itself?
best regards
Didier
Hi Didier,
Unfortunately there is no option like that if you want to style just specific tables. You have to insert that code on pages for every specific table that you want to be styled like this.
Kind Regards,
Isidora Markovic
wpDataTables: FAQ | Facebook | Twitter | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Amelia demo sites | Docs
You can try our wpDataTables add-ons before purchase on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables
OK thanks.
Is there somewhere a detailed documentation on how to play with table display. Heading, fonts, centered in columns and the like?
Regards
didier
Hi didier,
There ia a lot of places how you can play with table display. First you can check COLOR AND FONT SETTINGS in main settings of plugin. For configuration and styling table and columns you can take a look on this links:
https://wpdatatables.com/documentation/general/table-configuration-page-overview/
https://wpdatatables.com/documentation/table-features/conditional-formatting/
https://wpdatatables.com/documentation/column-features/coloring-and-styling-columns/
And also you have option to add this custom code in Custom wpDataTables CSS or Custom wpDataTables JS under the "Custom JS AND CSS" in main settings of wpdatatables.
Kind Regards,
Isidora Markovic
wpDataTables: FAQ | Facebook | Twitter | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Amelia demo sites | Docs
You can try our wpDataTables add-ons before purchase on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables
Many thanks. That's helpful
Didier