Nice Template.
Was messing around with it...I have a lot of categories. Is there a way to remove the category links from the header?
Nice Template.
Was messing around with it...I have a lot of categories. Is there a way to remove the category links from the header?
To remove the catalog from the header, look in the instruction file that came with the installation. It is at the bottom.
I removed mine because they didnt display correctly. You edit a php file and change a 1 to a 0
It worked for me.
Great template though
------------------------------------------------------------------------------------------------
I have made my screen display wider than the standard zen centre box display. I show text and specifications and needed more room for the reader to view. Works fine.
To remove the Categories - Tabs Menu go to Layout Settings under Configuration in your Administration Area and set to "0" ...
Updated website with new demo of CSS drop-down menu.
Will have the CSS menu updated shortly.
Colin @ iChoze Internet Solutions
Zen Cart Stuff powered by Zen Cart
http://zen-cart-templates.ichoze.net
Atheme V1.2 Released
• Updated CSS Drop-down menu
• Corrected Search Bar, so if removed, bar holds position
Download updated from downloads section, or click link in signature.
Colin @ iChoze Internet Solutions
Zen Cart Stuff powered by Zen Cart
http://zen-cart-templates.ichoze.net
I am trying to figure out a way to remove right sideboxes for all but the home page. Is this possible with this template?
Open tpl_main_page.php in includes/templates/iC-AthemeV1.2/common/:
Change line 12 to read:
Let me know how that works.Code:*/ if($body_id != 'index' && $cPath == ''){$flag_disable_right = true;} /*
Last edited by testuser; 9 Jun 2007 at 04:24 PM.
Colin @ iChoze Internet Solutions
Zen Cart Stuff powered by Zen Cart
http://zen-cart-templates.ichoze.net
testuser,
Thanks for your response. I was wanting the opposite of what this did. I want to keep the right sideboxes on the home page, but remove them from all others...how do I do that? The code you gave me removes sideboxes from home page, and keeps sideboxes on others.
Code:*/ if($body_id == 'index' && $cPath == ''){$flag_disable_right = true;} /*
Colin @ iChoze Internet Solutions
Zen Cart Stuff powered by Zen Cart
http://zen-cart-templates.ichoze.net
I tried that code, and nothing changed. I am using v 1.1 btw...
snipped of what I changed:
Code:<?php /** * Atheme Template - tpl_main_page.php * * to override the global settings and turn off columns un-comment the lines below for the correct column to turn off<br /> * to turn off the header and/or footer uncomment the lines below<br /> * Note: header can be disabled in the tpl_header.php<br /> * Note: footer can be disabled in the tpl_footer.php<br /> * <br /> * $flag_disable_header = true;<br /> * $flag_disable_left = true;<br /> */ if($body_id == 'index' && $cPath == ''){$flag_disable_right = true;} /* * $flag_disable_footer = true;<br /> * <br /> * // example to not display right column on main page when Always Show Categories is OFF<br /> * <br /> * if ($current_page_base == 'index' and $cPath == '') {<br /> * $flag_disable_right = true;<br /> * }<br /> * <br /> * example to not display right column on main page when Always Show Categories is ON and set to categories_id 3<br /> * <br /> * if ($current_page_base == 'index' and $cPath == '' or $cPath == '3') {<br /> * $flag_disable_right = true;<br /> * }<br /> * * * @package templateSystem * @copyright Copyright 2007 iChoze Internet Solutions http://ichoze.com * @copyright Portions Copyright 2003-2006 Zen Cart Development Team * @copyright Portions Copyright 2003 osCommerce * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0 * @version $Id: tpl_main_page.php 4886 2006-11-05 09:01:18Z drbyte $ */
Code:*/ if($body_id != 'index' && $cPath == ''){$flag_disable_right = true;} /*
Colin @ iChoze Internet Solutions
Zen Cart Stuff powered by Zen Cart
http://zen-cart-templates.ichoze.net
Bookmarks