Is it possible to adjust the pdf export settings so the table can be in landscape rather than portrait orientation?By Milan Jovanovic on 23/07/18 in
Yes you can do that by changing some code. Open file ../wp-content/plugins/wpdatatables/source/class.wpdatatable.php and around line 3315 you will find this:
'orientation' => 'portrait',
Just replace it with this:
'orientation' => 'landscape',
Was this answer helpful ?
Yes
No