Hey chewheck,
You can modify the destination email address like this
function testimonial_destination( $email ) {
return '[email protected]';
}
add_filter( 'new_testimonial_notification_email', 'testimonial_destination', 10, 1 );
This is un-tested, but should work. Marking as resolved, if you have any issues, please feel free to respond again 🙂
If you are enjoying the plugin, please consider taking a moment to rate it!
Cheers,
Luke
PS: That code should go in your themes functions.php file
Unfortunately that doesn’t seem to be working. It is still sending directly to my admin email. Any thoughts?
Can you please copy and paste the exact code you’re using?
function testimonial_destination( $email ) {
return [email protected];
}
add_filter( ‘new_testimonial_notification_email’, ‘testimonial_destination’, 10, 1 );
I also attempted it with the quotes around the email address