I am not saying that tpl_main_page.php IS your problem... but that it MIGHT be your problem...
Look at the long list of commented code at the top...
If you see anything were the following line is being rendered ACTIVE
Then it is possible that this is your issue. You can DE-activate it by COMMENTING it out - probably by putting an asterisk in front of it (if it is still in this header text)PHP Code:$flag_disable_right = true;
... or by using php comment tags //PHP Code:* $flag_disable_right = true;
Look also at the line that says:PHP Code:// $flag_disable_right = true;
if the text:PHP Code:// the following IF statement can be duplicated/modified as needed to set additional flags
if (in_array($current_page_base,explode(",",'list_pages_to_skip_all_right_sideboxes_on_here,separated_by_commas,and_no_spaces')) ) {
$flag_disable_right = true;
}
... is not there, and you see a list of pages being referenced instead, (EG: index,contact_us,checkout_shipping,shopping_cart,...)PHP Code:list_pages_to_skip_all_right_sideboxes_on_here,separated_by_commas,and_no_spaces
Then DELETE all these page names, so that the lines of code look like this:
It is important to retain the php SYNTAX here... if you omit one single quote mark, you will break the page...PHP Code:// the following IF statement can be duplicated/modified as needed to set additional flags
if (in_array($current_page_base,explode(",",'')) ) {
$flag_disable_right = true;
}
My example is proper syntax.



