Comments Monica started the conversationJanuary 15, 2019 at 11:14amHello, when I print the table in pdf format, it prints it vertically and cut part of the fields. Is there a way to put the print sheet horizontally? Thank you 2,572Aleksandar repliedJanuary 15, 2019 at 11:44amHello Monica.Thank you for the purchase. In file../wp-content/plugins/wpdatatables/source/class.wpdatatable.php and around line 3234 you can find: if (!empty($this->_tableToolsConfig['pdf'])) { $obj->dataTableParams->buttons[] = array( 'extend' => 'pdfHtml5', 'exportOptions' => array('columns' => ':visible'), 'className' => 'DTTT_button DTTT_button_pdf', 'orientation' => 'portrait', 'title' => $wdtExportFileName, 'text' => __('PDF', 'wpdatatables') ); } Please change the 'orientation' from 'portrait' to 'landscape', like this: if (!empty($this->_tableToolsConfig['pdf'])) { $obj->dataTableParams->buttons[] = array( 'extend' => 'pdfHtml5', 'exportOptions' => array('columns' => ':visible'), 'className' => 'DTTT_button DTTT_button_pdf', 'orientation' => 'landscape', 'title' => $wdtExportFileName, 'text' => __('PDF', 'wpdatatables') ); } Best regards.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 Sign in to reply ...
Hello, when I print the table in pdf format, it prints it vertically and cut part of the fields. Is there a way to put the print sheet horizontally? Thank you
Hello Monica.
Thank you for the purchase.
In file../wp-content/plugins/wpdatatables/source/class.wpdatatable.php and around line 3234 you can find:
Please change the 'orientation' from 'portrait' to 'landscape', like this:
Best regards.
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