• Resolved pandammonium

    (@pandammonium)


    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]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author AITpro

    (@aitpro)

    I checked your site and you have the Theme My Login plugin installed. The only forum topic I could find related to Theme My Login is 3+ years old > https://forum.ait-pro.com/forums/topic/theme-my-login-login-security/ So I’m not sure if the info in that forum topic is still valid. I don’t think whatever occurred had anything to do with Theme My Login, but I am just noting it as a reference for myself.

    Since you were able to get everything working then I think what probably occurred was some sort of Browser or plugin cache issue, which is pretty common when switching a website from http to https and will go away automatically after a few website page reloads or may require clearing/deleting Browser and/or plugin cache.

    Thread Starter pandammonium

    (@pandammonium)

    Sometimes I wonder if caching is more trouble than it’s worth! I wish I’d thought to clear the browser cache beforehand — but one cant think of everything all the time.

    Thanks for looking into it, anyway. I’m just glad it all works again and I can continue to admire my newfound secure padlock symbol in the browser address bar ??

    Plugin Author AITpro

    (@aitpro)

    Glad you got it figured out. ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Secured site to https, now error in BPS causes problems’ is closed to new replies.