MyBB Community Forums

Full Version: Disable Sidebox plugin for theme gomobile
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello!

How to disable the plugin for Sidebox theme gomobile
because it deforms my forum on mobile


[attachment=35290]
Here is a simple fix for your problem.

Open "MYBB_ROOT/inc/plugins/sidebox.php" in editor (eg. Notepad++) and search for:
//Display boxes on index
if($mybb->settings['sidebox1'] == 1)

Add above this part:
if($mybb->user['style'] != $mybb->settings['gomobile_theme_id'])
{

..then search for:
//End of codes taken from portal.php

add right below this line:
}

Save changes and try..
Thank you very much SvePuĀ  Smile