Zen Cart Logo

overide right colum

Locked

Views: 1,234

Results 1 to 5 of 5
This thread is locked. New replies are disabled.
25 Oct 2007, 2:00 PM
#1
kitcorsa avatar

kitcorsa

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??

25 Oct 2007, 2:30 PM
#2
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Location:
Upstate NY
Posts:
21,876
Plugin Contributions:
8

Re: overide right colum

Look in /includes/templates/your_template/common/tpl_main_page.php. There are directions in the comments at the top of the file.

25 Oct 2007, 3:09 PM
#3
kitcorsa avatar

kitcorsa

Totally Zenned

Join Date:
Feb 2007
Posts:
1,724
Plugin Contributions:
0

Re: overide right colum

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

25 Oct 2007, 3:34 PM
#4
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Location:
Upstate NY
Posts:
21,876
Plugin Contributions:
8

Re: overide right colum

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;
}

26 Oct 2007, 8:29 AM
#5
kitcorsa avatar

kitcorsa

Totally Zenned

Join Date:
Feb 2007
Posts:
1,724
Plugin Contributions:
0

Re: overide right colum

thanks that worked :D