We're Moving to a New Support Platform – Starting June 1st!
We’re excited to let you know that starting June 1st, we’ll be transitioning to a new support system that will be available directly on our product websites – Amelia, wpDataTables, and Report Builder. In fact, the new support platform is already live for Amelia and wpDataTables, and we encourage you to reach out to us there.
You'll always be able to reach us through a widget in the bottom right corner of each website, where you can ask questions, report issues, or simply get assistance.
While we still do not offer live support, a new advanced, AI-powered assistant, trained on our documentation, use cases, and real conversations with our team, is there to help with basic to intermediate questions in no time.
We're doing our best to make this transition smooth and hassle-free. After June 1st, this current support website will redirect you to the new "Contact Us" pages on our product sites.
Thanks for your continued support and trust – we’re excited to bring you an even better support experience!
Hello
First of all, great plugin ! The various features are time saving and much easier to set up than your own hand coded instance of datatables, so thank you.
However i've encountered an issue which is very troubling
I have two custom post type with different custom fields and taxonomies and a very high number of entries (thousands or 10s of thousands). In theory, your plugin should allow me to access this data through a wp query by using server side processing.
It works fine when I only use one or two columns, but as soon as I add some, the table preview stops working and i get an error message "db disappeared" and it returns an empty query!
My main issue is that you cannot edit the SQL query after creating the table, so if it doesn't work right off the bat, i can't create a "lite" query that I would then expand one field at a time.
The problem is, my datatable works fine it if i create my own hand coded DT, so the server can take the load, but the ajax call to the query preview in your plugin is returning an error even though i know it should work.
any idea how to work around this?
Hello Damien
Thank you for your kind words.
On this link, you can see a table with over 2.5 million entries, so the size is not causing any issues here.
Our logic is based on a PHP SQL parser which has full support for the SQL dialect for the following statement types
SELECT, INSERT, UPDATE, DELETE, REPLACE, RENAME, SHOW, SET, DROP, CREATE INDEX, CREATE TABLE, EXPLAIN and DESCRIBE.
Some of them are disabled for security reasons.
Filtering, sorting, and searching may not work properly if you include:
You can try preparing a MySQL view (which will return the data that you need, call it e.g. “view1” and then build a wpDataTables based on a simple query like "SELECT * FROM view1″.
Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables
thanks for the quick answer
it was an issue with both JOIN and CONCAT functions, but apparently necessary when querying some Wordpress content in this case
the work around I found was by using a php array instead, using Wordpress functions to directly return values
it’s now working with over 50 000 entries !
Great news, Damien, thanks for letting me know!
If you have any further questions or issues, please feel free to open a new ticket, and we'll gladly help.
Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia demo sites | Docs | Discord Community
You can try wpDataTables add-ons before purchasing on these sandbox sites:
Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables