Hi!
Is it possible to remove the “Your message:” text the sender receives? So that the sender only receives the automated responder message.
Thanks in advance!
Regards,
Michael
Hey mmichael1991,
Thank you for using Enfold.
Please add this in the functions.php file:
function avf_form_autorespondermessage_mod($message) {
$message = str_replace('Your message:', '', $message);
return $message;
}
add_filter('avf_form_autorespondermessage', 'avf_form_autorespondermessage_mod', 10, 1);
Best regards,
Ismael
That worked!
Thanks for your help :D
Regards,
Michael