-
AuthorPosts
-
June 21, 2014 at 5:32 pm #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
June 21, 2014 at 7:56 pm #282023I have a gmail account as well
June 22, 2014 at 9:33 am #282106Hi!
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,
PeterJune 22, 2014 at 5:33 pm #282178Thank you for the response…
The only function pages I see in my editor are the
Theme Functions and functions-enfoldIs 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
June 23, 2014 at 1:35 am #282258Hi Tiara!
Put it at the very end of Theme Functions (functions.php).
Best regards,
JosueJuly 2, 2017 at 4:25 pm #815575When 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
July 3, 2017 at 5:21 am #815729Hi Iain,
Please refer to this: http://kriesi.at/documentation/enfold/my-contact-form-is-not-sending-emails/
Best regards,
Rikard -
AuthorPosts
- You must be logged in to reply to this topic.