SSL Mixed Content
-
The plugin was causing an SSL mixed content issue. Any chance of fixing this in the next version? The following is what fixed the issue for me but I’ll have to fix it every time there’s an update.
In the function: ahab_add_jquery_stuff()
change:
wp_register_script( ‘jquery-hoverintent’, $plugin_path . ‘js/jquery.hoverIntent.minified.js’ );
to:
wp_register_script( ‘jquery-hoverintent’, plugins_url(‘js/jquery.hoverIntent.minified.js’, __FILE__) );change:
wp_register_script( ‘ahab’, $plugin_path . ‘js/ahab.js’ );
to:
wp_register_script( ‘ahab’, plugins_url(‘js/ahab.js’, __FILE__) );
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘SSL Mixed Content’ is closed to new replies.