Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #281999

    I am new to this theme and still playing around with it. I have been testing the forms options and they don’t seem to work correctly. I don’t get any emails notifying me of message sent from form from the website. However I do receive the auto reply email to the email address I put in the form. Also how does the subscription form work and how do I know if people are subscribed?

    Tiara

    #282023

    I have a gmail account as well

    #282106

    Hi!

    Try to insert this code into the child theme functions.php file and replace (Email address hidden if logged out) with an email address which contains the goddessembrace.com tld (i.e. (Email address hidden if logged out) , etc.). Some host/server provider do not allow you to send emails with different tlds to prevent spams and “fake emails” and the only way to bypass the limitation is to use an email address which contains your tld ( @goddessembrace.com ) to send the emails.

    
    add_filter('avf_form_from', 'avia_change_from', 10, 3);
    function avia_change_from($from,$new_post,$params){
    global $avia_config;
    $avia_config['from_email_address'] = $from;
    $from = ' (Email address hidden if logged out) ';
    return $from;
    }
    
    add_filter('avf_form_autoresponder_from', 'avia_change_autoresponder_from', 10, 3);
    function avia_change_autoresponder_from($from, $new_post, $form_params){
    global $avia_config;
    if(isset($avia_config['from_email_address'])) $from = $avia_config['from_email_address'];
    return $from;
    }
    

    Best regards,
    Peter

    #282178

    Thank you for the response…

    The only function pages I see in my editor are the
    Theme Functions and functions-enfold

    Is one of those the “child” theme?

    and do I just insert it anywhere???

    I am not super familiar with coding php like that….which is why I bought a template where I wouldn’t have to do too much :)

    THank you for your help

    TIara

    #282258

    Hi Tiara!

    Put it at the very end of Theme Functions (functions.php).

    Best regards,
    Josue

    #815575

    When I add this code in, it doesn’t seem to like it and does not save it.

    There must be an easier way to get the form emails to work.

    Iain

    #815729

    Hi Iain,

    Please refer to this: http://kriesi.at/documentation/enfold/my-contact-form-is-not-sending-emails/

    Best regards,
    Rikard

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