Hi again,
we didn’t notice yesterday, but there is a js error in the theme even with GD Booster not active.
It wont work if you have errors, actually it will only make it worse.
A check needs to be added in the theme script to check if the thing it is trying to get exists or not, otherwise if any plugin adds a sidebar with a different class than what used by the theme, the script will return an error.
this is the culprit.
bl = $(".widget-bar")
If wdget-bar does not exist it breaks
It is part of this code :
var $bl = $(".widget-bar"),
$th = $(".container-widget"),
blW = $bl.outerWidth(),
blSW = $bl[0].scrollWidth,
wDiff = (blSW/blW)-1, // widths difference ratio
mPadd = 60, // Mousemove Padding
damp = 20, // Mousemove response softness
mX = 0, // Real mouse position
mX2 = 0, // Modified mouse position
posX = 0,
mmAA = blW-(mPadd*2), // The mousemove available area
mmAAr = (blW/mmAA); // get available mousemove fidderence ratio
Simply adding this check on top of it would stop it in case the element doesn’t exist and would not return an error:
if($( ".widget-bar" ).length){}else{return;}
Usually it would just break the rest of that single script but with GD Booster it will break every script that comes after becasue it’s all in the same file.
Thanks