Hi,
We would like all forms to come from one email address rather than to appear to come from the sender’s email address.
So when all forms are sent to our email they appear from (Email address hidden if logged out) .
Hey RegoMate,
Please add following code to Functions.php file in Appearance > Editor
add_filter('avf_form_from', 'avf_form_from_mod', 10, 3);
function avf_form_from_mod($from, $new_post, $form_params) {
$from = " (Email address hidden if logged out) ";
return $from;
}
Best regards,
Jordan Shannon
Thanks! Worked perfectly!
Hi,
I’m happy to help! If you need anything else, please let us know here in the forums.
Best regards,
Jordan Shannon
