Tagged: 

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

    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.

    #847020

    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

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