Hi,
I tried to follow every step you describe at https://kriesi.at/documentation/enfold/contact-form/#toggle-id-13-closed, but it still doesn’t work. Particularly, with step 2, the website goes down when I add the following snippet to the theme functions.php file:
function change_cf_from() {
return ” (Email address hidden if logged out) “;
}
add_filter(‘avf_form_from’, ‘change_cf_from’, 10);
Give me a hand, please!
Hey ijnavas,
Thank you for the inquiry.
Did you change the email address in the filter? Please try to remove the previous filter and use this one instead.
function avf_change_cf_from() {
return " (Email address hidden if logged out) ";
}
add_filter('avf_form_from', 'avf_change_cf_from', 10);
Make sure to copy this code directly from the forum.
Best regards,
Ismael