Hi,
Since a week we do not get any form submissions anymore, and we didn't change anything.
How is this possible.
Kind regards,
Sven den Otter
Hi,
Since a week we do not get any form submissions anymore, and we didn't change anything.
How is this possible.
Kind regards,
Sven den Otter
Hi,
The forms still do not work. Can anyone from the support forums take a look at this.
Kind Regards,
Sven den Otter
We will need a URL to the page on your site where the form is located.
When a form is submitted, is the entry stored, and you are just not receiving email notifications?
Did you make any changes to your site recently?
Hi Chris,
Thank you for your reply. Well at first I though the submitted forms didn't get stored, but I recently found out they are all marked as spam. The URL is http://www.glansmagazine.nl.
How can I prevent the entries from being marked as spam?
Thank you in advance.
If you are using Akismet to prevent comment spam, your form submissions will be filtered through Akismet as well. You can prevent that from happening by using the gform_akismet_enabled filter:
http://www.gravityhelp.com/documentation/page/Gform_akismet_enabled
That code to disable Akismet for your form submissions will go in your current theme's functions.php.
I just ran into this same issue it seems. I've implemented the code above at the bottom of my functions.php (ensuring that there are no blank lines and php tags are closed appropriately) , and now receive the following message in the Entries page:
Warning: call_user_func_array() expects parameter 1 to be a valid callback, function 'disable_akismet' not found or invalid function name in /home/content/24/9722324/html/wp-includes/plugin.php on line 173
With that, my emails are being delivered again, but the same error message also briefly displays upon submitting the form on the public side.
Try the following example:
<?php
add_filter("gform_akismet_enabled", "__return_false");
?>
http://blog.brethertons.co.uk/client-satisfaction-survey
I'm having a similar problem to this, and I assume it's linked to Akismet. After clicking submit, the form entry is submitted, but there is no notification message displayed on screen, the spinner.gif file remains.
Added this to my functions;
add_filter("gform_akismet_enabled", "__return_false");
No conflict mode is 'on'
Akismet Integration is set to 'no'
Most likely it is a theme or plugin conflict, can you try the following steps to isolate please?
http://www.gravityhelp.com/documentation/page/Testing_for_a_Theme/Plugin_Conflict