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
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