Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Turn Off All Products in Category Sidebox

Turn Off All Products in Category Sidebox

Locked

Views: 2,650

Results 1 to 6 of 6
This thread is locked. New replies are disabled.
1 Feb 2007, 4:01 PM
#1
bekinky avatar

bekinky

Zen Follower

Join Date:
Jan 2007
Posts:
97
Plugin Contributions:
0

Turn Off All Products in Category Sidebox

How do you turn off the all products and new products links inside the category sidebox just below the horizontal line? Can this be done from Admin?

Also, where can you change the placement, the colour and width of the horizontal line?

Thanks for any help. I have tried searching but the search results pick up on words and threads which have nothing to do with what I amn looking for.

1 Feb 2007, 6:03 PM
#2
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: Turn Off All Products in Category Sidebox

admin > config > layout settings > Categories Box - Show Products All Link > set to "false"

1 Feb 2007, 6:07 PM
#3
bunyip avatar

bunyip

Totally Zenned

Join Date:
Sep 2004
Location:
Western Massachusetts
Posts:
2,361
Plugin Contributions:
1

Re: Turn Off All Products in Category Sidebox

How do you turn off the all products and new products links inside the category sidebox just below the horizontal line? Can this be done from Admin?
Admin > Configuration > Layout Setings
Also, where can you change the placement, the colour and width of the horizontal line?
You can turn it on/off from the Layout Settings configuration page. To modify it, you'll need to make an override copy of includes/templates/template_default/sideboxes/tpl_categories.php - this section of code is what displays it:

    if (SHOW_CATEGORIES_SEPARATOR_LINK == '1') {
      $content .= '<hr id="catBoxDivider" />' . "\n";
    }
1 Feb 2007, 6:08 PM
#4
bekinky avatar

bekinky

Zen Follower

Join Date:
Jan 2007
Posts:
97
Plugin Contributions:
0

Re: Turn Off All Products in Category Sidebox

Thanks to you both :cool:

1 Feb 2007, 6:12 PM
#5
rush_woman avatar

rush_woman

Zen Follower

Join Date:
Jan 2007
Location:
California
Posts:
328
Plugin Contributions:
0

Re: Turn Off All Products in Category Sidebox

Oops, sorry about this

8 Aug 2010, 11:50 PM
#6
jayzilla avatar

jayzilla

New Zenner

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

Re: Turn Off All Products in Category Sidebox

bunyip:

Admin > Configuration > Layout Setings

You can turn it on/off from the Layout Settings configuration page. To modify it, you'll need to make an override copy of includes/templates/template_default/sideboxes/tpl_categories.php - this section of code is what displays it:

if (SHOW_CATEGORIES_SEPARATOR_LINK == '1') {
  $content .= '<hr id="catBoxDivider" />' . "\n";
}

Any idea where in the CSS I can find the code to remove the space it leaves?