Secured site to https, now error in BPS causes problems
-
Hi, I secured my site yesterday to use HTTPS instead of HTTP. Afterwards, BPS threw up an error which prevented the menu displaying properly on narrow screen/windows.
If I was not logged in, the menu on narrow screens wouldn’t unfurl as it was meant to, whereas, if I was not logged in, the menu would do nothing on pressing it.
The error is in:
– bulletproof-security/includes/login-security.php
where .tooltip is undefined:/* <![CDATA[ */
jQuery(document).ready(function($){
$( “#reference” ).tooltip({ // ****** THIS IS THE LINE WITH THE ERROR
show: 500,
hide: 500,
tooltipClass: “bps-custom-tooltip-style”,
position: {
my: “left center”,
at: “left bottom+20”,
//of: “#targetElement”,
collision: “flipfit flip”
},
open: function( event, ui ) {if (screen.width <= 800) {
ui.tooltip.animate({ top: ui.tooltip.position().top + 50 }, 500 );
} else {
ui.tooltip.animate({ top: ui.tooltip.position().top + 11 }, 500 );
}
}
});
});
/* ]]> */I deactivated the plugin, commented out the code from, and including,
$( “#reference” ).tooltip({
to, and including, its closing brackets.Then I reactivated the plugin, and the menu displayed as expected.
I wanted to copy and paste the error I got so I could paste it here for you, so I deactivated the plugin, uncommented out the code and reactivated the plugin. However, this has resulted in everything appearing to behave itself as expected.
It looks to me like something isn’t being defined where the plugin thinks it is. I may be wrong, of course, but I thought I should let you know I broke your plugin so you can fix it properly ??
Cheers
The page I need help with: [log in to see the link]
- The topic ‘Secured site to https, now error in BPS causes problems’ is closed to new replies.