• Resolved Dan Yonaco

    (@dan-yonaco)


    Dear helpers,

    I have installed the plug-in, created a form and added it to the page.

    On the dashboard, I can see it’s there, but for some reason, it does not appear on the page itself. Any advice?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Patrick – WPMU DEV Support

    (@wpmudevsupport12)

    Hi @dan-yonaco

    Sorry to hear you are having this issue.

    Could you try to enable the Load from Ajax on Form > Behaviour?

    I can see there are some JavaScript errors in the website that can prevent the form to load:
    https://monosnap.com/file/2JGEBTdz2YwzqYmfhicnPGBkPzPcec

    One is from probably a custom script:

    $(document).ready(function() {
        $('#login').click(function() {
          $('#divlogin').show();
          return false;
        });
    });

    You can use jQuery instead of $

    jQuery(document).ready(function() {
        jQuery('#login').click(function() {
          jQuery('#divlogin').show();
          return false;
        });
    });

    The second one:
    Uncaught TypeError: Cannot read property ‘msie’ of undefined

    Seems from a WordPress JS file, you can try to disable the Rocket load from Cloudflare and check if those reports are gone.

    Let us know if the form worked now.
    Best Regards
    Patrick Freitas

    Plugin Support Patrick – WPMU DEV Support

    (@wpmudevsupport12)

    Hi @dan-yonaco

    I hope you are doing well.

    We haven’t heard from you in a while, I’ll go and mark this thread as resolved.

    However, feel free to let us know if you have any additional question or problem.

    Best Regards
    Patrick Freitas

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Form is not appearing’ is closed to new replies.