Fix for issue that is breaking footer and admin bar on some sites
-
Had to code this into the plugin to get it to work. Would be nice to see this in future update ??
wp-content/plugins/social_crowd/sc_display.php
before line 16 (if($which == “all”){) , add if(is_array($currStats)) {
after line 90 (}) add }
FROM:
if($which == “all”){
[…]
}else{
switch($which){
[…]
}
}
TO:
if(is_array($currStats))
{
if($which == “all”){
[…]
}else{
switch($which){
[…]
}
}
}
- The topic ‘Fix for issue that is breaking footer and admin bar on some sites’ is closed to new replies.