@bashy
open ./includes/functions.php
find and remove
Code:
//added from MKportal
define ( 'IN_MKP', 1 );
require_once "../mkportal/include/VB/vb_out.php";
$output = mkportal_board_out($output);
//end added
create a new plugin on the 'global_complete' hook call it 'MK Portal' with the following code
Code:
$holdmkp[] = "vbspell";
$mkp = "yes";
foreach ($holdmkp as $id => $item) {
if(strpos($filename, $item) === false || strpos($userinfo['location'], $item) === false){ $mkp = $mkp; } else { $mkp = "no"; }
}
if ($mkp = "yes") {
//added from MKportal
define ( 'IN_MKP', 1 );
require_once "../mkportal/include/VB/vb_out.php";
$output = mkportal_board_out($output);
//end added
}
if you have any other pages you dont want the sidebar on just add more lines ad the top like this
Code:
$holdmkp[] = "index";
$holdmkp[] = "showthread";
ect...
that SHOULD fix the problem with that portal