Good morning
Can someone tell me how to eliminate the sideboxes on my product pages and keep the sideboxes on my front page?
Good morning
Can someone tell me how to eliminate the sideboxes on my product pages and keep the sideboxes on my front page?
Edit /includes/templates/your_tempate/common/tpl_main_page.php according to the comments at the top of the file. Add a statement likeIf you want sideboxes on other pages beside the home page, the test will get a bit more complicated - try the variety with "explode" in it.PHP Code://disable sidebars if not home page
if (!$this_is_home_page){
$flag_disable_left = true;
$flag_disable_right = true;
}
WOW works like a charm!!!!!
TY TY