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!
I want to move the tools to under the table is there an easy way to do this or is there a function I can attach to a button?
Hello dfrank0043.
Thank you for your purchase.
This cannot be done with custom CSS, or any settings within the plugin. You would need to open ../wp-content/plugins/wpdatatables/source/class.wpdatatable.php and around line 3084 find this line of code:
$obj->dataTableParams->sDom = "BT<'clear'>{$showRowsPerPage}{$globalSearch}{$scrollable}{$infoBlock}p";
If you want to move the table tools before pagination, you need to change it to this:
$obj->dataTableParams->sDom = "<'clear'>{$showRowsPerPage}{$globalSearch}{$scrollable}{$infoBlock}BT<'clear'>p";
So the outcome is:
Or, below the pagination:
$obj->dataTableParams->sDom = "<'clear'>{$showRowsPerPage}{$globalSearch}{$scrollable}{$infoBlock}p<'clear'>BT";
And the outcome:
You can move them around any way you'd like to change the location of the tools.
I hope this helps.
Best regards.
Kind Regards,
Aleksandar Vuković
aleksandar.vukovic@tmsproducts.io
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
This worked GREAT until your last update, can you help me make this work again.
Hi again dfrank0043.
This should remain the same, you just need to access the file again every time an update occurs, since this is a workaround, not a permanent solution.
If you're still having trouble with it, please provide me a temporary WP-admin login for your site where this happens, so we could log in and take a look ‘from the inside’ as that’s the most efficient way to see and resolve the issue. We do not interfere with any data or anything else except for the plugin (in case that’s a production version of the site), and of course we do not provide login data to third party. You can write credentials here just check Private Reply so nobody can see them except us.
Also make sure the Plugin Editor is enabled, so I can access the files without FTP.
Best regards.
Kind Regards,
Aleksandar Vuković
aleksandar.vukovic@tmsproducts.io
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
Hello,
I hope you can help. For some reason this code is not working anymore.
It moved the tools but they are not visible.
http://ashares.mw-sandbox.com/etfs/aadr/
scroll down to the "Top Ten Holdings" section. That table should have a download EXCEL button under the pagination. In the code is see the div, but it is not showing up. I tried to manipulate it but to no avail.