To stop side columns on certain pages, you edit:
includes/templates/YOUR_TEMPLATE/templates/tpl_main_page.php
IF THIS FILE DOES NOT EXIST IN THAT LOCATION, TRANSFER A COPY OF IT FROM:
includes/templates/template_default/templates/tpl_main_page.php
Open it for editing using a PLAIN TEXT EDITOR
Find this section:
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;
}
Code:
// the following IF statement can be duplicated/modified as needed to set additional flags
if (in_array($current_page_base,explode(",",'product_info')) ) {
$flag_disable_right = true;
}
if (in_array($current_page_base,explode(",",'product_info')) ) {
$flag_disable_left = true;
}