Can anyone tell me how to eliminate the Right Sidebox from the index page only?
Can anyone tell me how to eliminate the Right Sidebox from the index page only?
In /includes/templates/your_template/common/tpl_main_page.php, look at the comments at the top of the file. They describe how to do this. Add
if ($this_is_home_page) {
$flag_disable_right = true;
}
or simply
$flag_disable_right = $this_is_home_page;
near the top pf the file as shown.
That worked just fine. Thanks![]()