Skip to content

Instantly share code, notes, and snippets.

@rafsuntaskin
Last active April 12, 2022 18:06
Show Gist options
  • Save rafsuntaskin/4352c73dacf2a4afc073daab2985651e to your computer and use it in GitHub Desktop.
Save rafsuntaskin/4352c73dacf2a4afc073daab2985651e to your computer and use it in GitHub Desktop.
PDF Tickets - unlink error patch
<?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