Using tribe_tpp_email_subject filter suppresses confirmation email
-
I having been using the tribe_rsvp_email_subject filter to alter the subject of RSVP confirmation emails. However, when I try to add the tribe_tpp_email_subject filter for tickets purchased with PayPal, the system stops sending confirmation messages for purchases even though the ticket purchase is recorded correctly in WordPress and on PayPal and no error message is displayed.
The issue persists even after I reduce my code the the following:
add_filter( ‘tribe_tpp_email_subject’, ‘my_tpp_email_subject’, 10, 3 );
function my_tpp_email_subject ( $text, $post_id, $order_id ) {return $text ;
}Removing that code results in resumption of confirmation messages.
I’m using The Events Calendar 5.1.4 with upgraded views, Event Tickets 4.12.2 and WordPress 5.5.1.
- The topic ‘Using tribe_tpp_email_subject filter suppresses confirmation email’ is closed to new replies.