Last active
April 12, 2022 18:06
-
-
Save rafsuntaskin/4352c73dacf2a4afc073daab2985651e to your computer and use it in GitHub Desktop.
PDF Tickets - unlink error patch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'tribe_ext_pdf_tickets_mpdf_args', function( $args ) { | |
$upload_dir = wp_upload_dir(); | |
$args['tempDir'] = $upload_dir['basedir'] . '/tmp/'; | |
return $args; | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment