View difference between Paste ID: rpbGjHh3 and 9wK4vHtq
SHOW: | | - or go back to the newest paste.
1
function removeWooTicketsPDFs() {
2
	$pdfCallback = array(TribeWooTickets::get_instance(), 'add_PDF_to_email');
3
	remove_filter('woocommerce_email_attachments', $pdfCallback, 10);
4
}
5
6-
add_action('plugins_loaded', 'removeWooTicketsPDFs', 20);
6+
add_action('woocommerce_email_attachments', 'removeWooTicketsPDFs', 5);