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

    Hi – I am using the built in contact form in Enfold and when the email is sent out – it comes from an address that is not in the Admin setting or any of the users. I need to change it because people try to reply to: the message and it goes to the wrong place. I’ve pasted what they receive in their mailbox below. Can you please advise where I can change this email…I’ve looked everywhere!

    Thanks-
    Anna

    #1026130

    Hey annameis,

    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,
    Basilis

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