Tagged: CONTACT FORM
Hi,
I installed the Enfold theme 2017 Versione: 4.1.2.
I use default contact form element, but I have the following error: Emails are sent from the type address (Email address hidden if logged out) ‘.
In the contact form settings I added a gmail address.
Can you help me solve it? Best regards.
Hey topmedialab,
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,
Yigit