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!
Hi. We have some large tables that have 27 or so columns and 8K rows. After watching the video on responsiveness I think I have seen the answer. If I purchase the pro version for the responsiveness, on a desktop will it give me the + (plus) button for the columns that would go off the page? Is there documentation on this?
This is the document on the subject but are there more documents? Responsive tables in WordPress - wpDataTables - Tables and Charts Plugin
Thanks
Hi Graham
Thank you for reaching out to us.
You can achieve this by increasing the screen size of mobile and tablet devices set in the main wpDataTables settings.
This will show the + button for all screen sizes lower than what you set in the settings, so setting a very high number would be the best.
Since this is in global settings it is applied on all tables. We have in plan to implement it on each table on Customize tab in table settings in the future.
Until that you can use this hook in functions.php of your theme or child theme
I hope this helps, do let us know if you need any further assistance.
Hi Blaženka
Thank you for your prompt reply. Just checking that the below is correct for tableid 11.
Much appriciated.
Graham
WPDataTable object function updateTableDescription( $tableDescriptionObj, $tableId ,$wpdtObj)
if( $tableId == 11 )
$tableDescriptionObj->tabletWidth = '1000';
add_filter('wpdatatables_filter_table_description','updateTableDescription', 10, 3);
Hi Graham
This looks fine to me but do let me know if you encounter any issues so we can troubleshoot further.