PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

No confirmation displaying

  1. My form was working fine, and now the confirmation page is not displaying. I have it set to re-direct to a URL on my website. But now, nothing happens. The data is sent, but the user is not notified in anyway. So they end up clicking it 20 times, and I get 20 of the same emails.

    http://www.avexdesigns.com (the form is in the footer)

    Posted 11 years ago on Thursday May 10, 2012 | Permalink
  2. I see a couple of JS error on your page there: Screenshot

    Is your form using AJAX? Also, can you test for theme/plugin conflicts by following the instructions here: http://www.gravityhelp.com/documentation/page/Testing_for_a_Theme/Plugin_Conflict

    Posted 11 years ago on Thursday May 10, 2012 | Permalink
  3. Thanks for the reply.

    I'm not sure if I am using AJAX... How would I check?

    I disabled all plugins, and the problem still occurs. I was unable to test it by activating another theme, because the GF code is in my footer, within the current themes files.

    Posted 11 years ago on Thursday May 10, 2012 | Permalink
  4. ok, there was def a JS conflict. Because it is working now.

    I was using the following in my functions.php to load jquery, AND loading it in the footer. I dont know how this happened. But I removed this from functions and now it works.

    function load_jquery() {
    
        if (!is_admin())
        {
    
            wp_deregister_script('jquery');
    
            wp_register_script('jquery', '', FALSE, '1.7.1');
    
            wp_enqueue_script('jquery');
    
        }
    
    }
    Posted 11 years ago on Thursday May 10, 2012 | Permalink
  5. Right on, glad you got it sorted out!

    Posted 11 years ago on Thursday May 10, 2012 | Permalink

This topic has been resolved and has been closed to new replies.