Need help with child theme functions code
-
I need to implement both of the following functions. If added individually, each works, but together, they do not. How can this be rewritten so that they will function together? Thanks
// Adds additional rsvp notifications function your_function_mail_bcc( $headers = array(), $event_id = null, $order_id = null ) { $headers[] = 'bcc: [email protected]'; return $headers; } add_filter( 'tribe_rsvp_email_headers', 'your_function_mail_bcc' ); // Add a custom "from" name and email to the rsvps add_filter( 'tribe_rsvp_email_headers', function() { $name = 'Website Name'; $email = '[email protected]'; return 'Content-type: text/html' . "\r\n" . "From: $name <$email>" . "\r\n"; } );
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
The topic ‘Need help with child theme functions code’ is closed to new replies.