In order to change the more common options for your PDFs, simply add the following action to your themes functions.php
This filter gives you full control over the mPDF library. Check the mPDF manual for more info.
function bewpi_mpdf( $mpdf, $document ) { // change the direction of the invoice to RTL $mpdf->SetDirectionality( 'rtl' ); return $mpdf; } add_filter( 'bewpi_mpdf', 'bewpi_mpdf', 10, 2 );