Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #677730

    When I get email from contact form, and hit ‘Reply’,
    The reply-to address is the website email (admin) not the sender’s (from email field).
    I tried the next code – but it’s not working.

    add_filter('avf_form_from', 'avia_change_from', 10, 3);
    function avia_change_from($from,$new_post,$params){
    $from = $new_post['e-mail_1'];
    return $from;
    }
    #677854

    attached URL of contact form page

    #678665

    Any answers?

    #679771

    Hi,

    We are sorry for the delay. Please refrain from bumping or replying to your own thread because it gets pushed back to the end of the queue and moderators won’t be able to provide a response immediately. Please be patient while we go through the rest of the queue. Thank you for your understanding.

    Did you install a SMTP plugin? Please review this thread. https://kriesi.at/support/topic/contact-form-emails-no-longer-working/

    Best regards,
    Ismael

    #679866

    No. I didn’t install any SMTP plugin

    #681896

    Hi,

    Please try this in the functions.php file:

    add_filter('avf_form_from', 'avf_form_from_mod', 10, 3);
    function avf_form_from_mod($from, $new_post, $form_params) {
        $from = urldecode($new_post['2_1']);
        return $from;
    }

    If it’s not working, you just have to manually copy the email address info from the email message after hitting the reply button.

    Best regards,
    Ismael

    #681969

    Not working.
    Disappointing…
    :-(

    #683196

    Hi,

    you can try Contact Form 7 plugin, because it has much more options for you.

    Best regards,
    Andy

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