Results 1 to 2 of 2
  1. #1
    Join Date
    Jan 2012
    Posts
    60
    Plugin Contributions
    0

    application error Can't get rid of categories side bar in my store

    Hey guys, I created a store on a free test server that's why the link seems pretty sketch, but anyways.. when you go to
    http://winery.site40.net/store/index...=index&cPath=7

    you can see that there's a side bar that says CATEGORIES on the left but the categories are also on the main body. how do i get rid of that categories side bar JUST from that page, because i would like for it to still be there when they click on a category so they can navigate easily. I just don't need it on that page. thank you!

  2. #2
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    20,977
    Plugin Contributions
    25

    Default Re: Can't get rid of categories side bar in my store

    This tutorial describes the principles involved.
    http://www.zen-cart.com/content.php?...ome-pages-only

    For a single sidebox, you would apply the "if" test to your template override copy of the module file for the sidebox - in this case, /includes/modules/sideboxes/your_template/categories.php. (Copy it from /includes/modules/sideboxes/ before making changes.)

    Most sidebox module files have a line near the top similar to
    $show_sideboxname = true;
    Add the if test immediately after this line. In your case, you want to turn the sidebox off for category id 7 (Wine Store) only.
    PHP Code:
    if ($current_page_base == 'index' and $cPath '7') {
      
    $show_categories false;

    There are many kinds of things you can test depending on the circumstances.

 

 

Similar Threads

  1. Cant Get Rid Of Left Column Bar
    By hcd888 in forum Templates, Stylesheets, Page Layout
    Replies: 8
    Last Post: 21 Jul 2010, 10:30 PM
  2. Need to get rid of header bar thingy?
    By adamson in forum Templates, Stylesheets, Page Layout
    Replies: 6
    Last Post: 4 Jan 2008, 02:22 PM
  3. How can I get rid of the spaces between the banners in the side box?
    By cgardner in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 9 Oct 2007, 03:05 AM
  4. Get rid of Bar
    By jh79 in forum General Questions
    Replies: 2
    Last Post: 20 Aug 2007, 08:56 PM
  5. How Do I Get Rid of The Horizontal Categories Bar?
    By jaz1974 in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 8 Nov 2006, 03:48 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •