Zen Cart Logo
Forums / Basic Configuration / Remove Sidebars from an ezpage

Remove Sidebars from an ezpage

Views: 1,088

Results 1 to 7 of 7
25 Apr 2011, 1:00 AM
#1
kashyyyk avatar

kashyyyk

New Zenner

Join Date:
Feb 2009
Posts:
46
Plugin Contributions:
0

Remove Sidebars from an ezpage

I want to remove the left and right sidebars for an ezpage and can't get it to work.

The ezpage id is 17
I also use CEON Uri mapping and the page is called 'Knock-Offs'

// the following IF statement can be duplicated/modified as needed to set additional flags
  if (in_array($current_page_base,explode(",",'list_pages_to_skip_all_right_sideboxes_on_here,separated_by_commas,and_no_spaces')) ) {
    $flag_disable_right = true;
  }

I tried it as

// the following IF statement can be duplicated/modified as needed to set additional flags
  if (in_array($current_page_base,explode(",",'Knock-Offs')) ) {
    $flag_disable_right = true;
  }

and it didn't work.

How would I do this?

Thanks

25 Apr 2011, 1:09 AM
#2
haredo avatar

haredo

Totally Zenned

Join Date:
Apr 2006
Location:
Texas
Posts:
6,180
Plugin Contributions:
0

Re: Remove Sidebars from an ezpage

Define sidebars for me.. I don't understand?????

25 Apr 2011, 1:23 AM
#3
kashyyyk avatar

kashyyyk

New Zenner

Join Date:
Feb 2009
Posts:
46
Plugin Contributions:
0

Re: Remove Sidebars from an ezpage

The columns on the right and left side. In my first post the code is only for the right, which I will duplicate for the left

25 Apr 2011, 1:50 AM
#5
kashyyyk avatar

kashyyyk

New Zenner

Join Date:
Feb 2009
Posts:
46
Plugin Contributions:
0

Re: Remove Sidebars from an ezpage

Thanks, that page had a link to an article-
https://www.zen-cart.com/tutorials/index.php?article=233

Which allowed me to only edit the tpl_main_page.php and use

 if (in_array($ezpage_id,explode(",",'17'))) {
    $flag_disable_left = true;
  }

Dan

25 Apr 2011, 1:55 AM
#6
haredo avatar

haredo

Totally Zenned

Join Date:
Apr 2006
Location:
Texas
Posts:
6,180
Plugin Contributions:
0

Re: Remove Sidebars from an ezpage

You are most welcome, glad I could help you find the right tools ...:smile:

25 Apr 2011, 4:34 AM
#7
gjh42 avatar

gjh42

Black Belt

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

Re: Remove Sidebars from an ezpage

Better yet,
admin > Configuration > EZ-Pages Settings > EZ-Pages Pages to disable left-column...