• Resolved jackbean

    (@jackbean)


    Hello,

    Thank you for this nice plugin.

    It has some great features, but for whatever reason the email subscription function is not working for me. When trying to submit an email, I see the email will be added to the webpage window’s address bar, but nothing else happens.

    In addition, the “Contact Us” button is not working either. Nothing happens after I clicking on it. If I hover my mouse over it, the webpage’s status bar will show the message “javascript:void(0)”.

    Would really appreciate some help to make this plugin usable/useful.

    Thank you in advance!!

    JB

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • 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.

    Thread Starter jackbean

    (@jackbean)

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

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

The topic ‘email subscription not working’ is closed to new replies.