Hello @jackbean,
As far as I see, the problem is caused by Cloudflare Rocket Loader.
jQuery is not loaded because the src url:
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
Is automatically replaced with:
<script data-rocketsrc="https://www.prohrweb.org/ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js" type="text/rocketscript"></script>
I suggest to tell them about this problem. Also, you can try to solve it yourself by using the next snippet (you must empty the cache after you add the code):
// add this code in functions.php of your active theme (or child theme)
function alter_wpmm_scripts($scripts) {
if( isset($scripts['jquery']) ) {
$scripts['jquery'] = site_url('wp-includes/js/jquery/jquery.js');
}
return $scripts;
}
add_filter('wpmm_scripts', 'alter_wpmm_scripts', 10, 1);
Thanks.
Hi George,
Thank you very much! I used your code and it worked like a charm!!
This is a great product and I really appreciate your getting back so fast. Thank you again!
Just a couple of small suggestions to make this plugin even better:
1). the Contact Us modal form doesn’t appear to have a way to exit out of it if User decides not to leave a msg. It took me a few seconds to figure out that one can just click on the background to get out, but a visual que would be nicer.
2). the graphic background only allows one background picture, which is a bit limiting. It would be nice to have a bit more design options. A nice and simple example is the “Minimal Coming Soon & Maintenance Mode” by WebFactory. But I think your plugin’s has more functional feature and is easier to use.
Well, thank you George again for this great product and help!
JB
@jackbean Thanks for your suggestions. 🙂