Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1410450

    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!

    #1410563

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.