I wanted to display blank sidebox on only a few pages..I went through the forums and couldn't find a good solution and also the FAQ solution works only on the home page.
I finally managed to get the desired result.
This is wat i did Modify file includes/modules/sideboxes/MY_TEMPLATE/blank_sidebox
PHP Code:
if (in_array($current_page_base,explode(",",'page_4,contact_us,shippinginfo,page_2')) ) {
$show_blank_sidebox = true;
} else {
$show_blank_sidebox = false;
}
if ($show_blank_sidebox == true) {
MAIN BLOCK
}
I hope this helps