You can edit the VBINDEX_SHELL template and remove the welcome box from there if you don't want it on extra pages.
To turn the right side off on extra pages add:
PHP Code:
if (EXTRA_PAGE == true && ($vbindex['options'] & VBI_BOTH_COLS) || ($vbindex['options'] & VBI_RIGHT_COL)) {
if ($vbindex['options'] & VBI_RIGHT_COL) {
$vbindex['options'] -= VBI_RIGHT_COL;
} elseif ($vbindex['options'] & VBI_BOTH_COLS) {
$vbindex['options'] -= VBI_BOTH_COLS;
$vbindex['options'] += VBI_LEFT_COL; // if you have both columns switched on and don't want the left to show either remove this line
}
}
After:
PHP Code:
unset($option, $bitfield);
In vbindex.php