Totally Zenned
- Join Date:
- Feb 2007
- Posts:
- 1,724
- Plugin Contributions:
- 0
overide right colum
i want the right colum to display on all pages except the homepage.
how can i override the right colum so its not displayed on the home page??
Views: 1,234
Totally Zenned
i want the right colum to display on all pages except the homepage.
how can i override the right colum so its not displayed on the home page??
Black Belt
Look in /includes/templates/your_template/common/tpl_main_page.php. There are directions in the comments at the top of the file.
Totally Zenned
cant get it to work.
tried to understand the instructions but i dont, ive tryed removing the * from at top and the ! on line 136 but not working
Black Belt
The simplest way to do this (not documented in the comments) is to add the following code, say somewhere around line 50, right after
$body_id = ($this_is_home_page) ? 'indexHome' : str_replace('_', '', $_GET['main_page']);
and before
?>```php
if ($this_is_home_page) {
$flag_disable_right = true;
}
Totally Zenned
thanks that worked :D
Tell staff why this post should be reviewed.