Zen Cart Logo
Forums / General Questions / Hide left and right columns on main_page...

Hide left and right columns on main_page...

Locked

Views: 2,553

Results 1 to 7 of 7
This thread is locked. New replies are disabled.
7 Dec 2006, 11:18 AM
#1
alex_clarke avatar

alex_clarke

Totally Zenned

Join Date:
Mar 2006
Posts:
909
Plugin Contributions:
1

Hide left and right columns on main_page...

Is it possible to hide both the left and right columns when the main page is displayed?

I would like them to appear for all product pages and category pages, but just no the main home page.

8 Dec 2006, 4:10 PM
#3
alex_clarke avatar

alex_clarke

Totally Zenned

Join Date:
Mar 2006
Posts:
909
Plugin Contributions:
1

Re: Hide left and right columns on main_page...

Thanks for the above link.

I've currently added the following code to my tpl_main_page.php (in my overrides folder.

  if ($current_page_base == 'index') {
  $flag_disable_left = true;
  }

While this works, it disables the left column on all category and sub-category pages too - which I don't want.

I would just like to disable the left column on the main page (index page).

Is this possible?

8 Dec 2006, 4:17 PM
#4
alex_clarke avatar

alex_clarke

Totally Zenned

Join Date:
Mar 2006
Posts:
909
Plugin Contributions:
1

Re: Hide left and right columns on main_page...

Ok, I've just sorted this by replacing my previous code with the following...

  if ($_GET['main_page'] == 'index' and $current_category_id=='') {
  $flag_disable_left = true;
  }
8 Dec 2006, 6:50 PM
#5
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: Hide left and right columns on main_page...

To know that you are on the absolute main page ... there is a variable:
$this_is_home_page

When true, you are on the main page based on your configuration and you do not have to worry about settings etc.

if ($this_is_home_page == true) {
// I am the main page
} else {
// I am not the main page
}
8 Dec 2006, 7:20 PM
#6
alex_clarke avatar

alex_clarke

Totally Zenned

Join Date:
Mar 2006
Posts:
909
Plugin Contributions:
1

Re: Hide left and right columns on main_page...

Thanks Ajeh!

It's all beginning to come together now! :)

8 Dec 2006, 9:26 PM
#7
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: Hide left and right columns on main_page...

Aren't jigsaw puzzels fun?! All the peices and parts fit perfectly, you just have to grab the right peice ... easy smeazy ... :lamo: