As previously announced via banners and our newsletters, support is no longer available through this platform.
For easier navigation, you can still click on "Submit a Ticket" here, choose the appropriate category, and you'll be redirected to the correct support channel for your plugin.
You can still access your previous tickets and browse public tickets, but please note that responding to tickets is no longer possible.
Paid customers: Please log in to your store account for support.
Pre-purchase questions: Use the support widget in the bottom-right corner of our websites:
https://wpamelia.com
https://wpdatatables.com
https://wpreportbuilder.com
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.