
Originally Posted by
debtag
Wow... I am at my wits end with trying to figure out some things in apple zen with it's drop down menu! I really need some help!
I have the drop down menu in the header and I would like to get rid of the following: (I have tried and tried to no avail)
1. About us
2. Discount Coupons
3. Gift Certificates
4. Specials
5. New products
I also cannot get the site map to go away!
www.photographysisters.com
Thank you
You can remove About us in includes/templates/apple_zen/common/tpl_drop_menu.php, just remove it:
Code:
<li><a href="<?php echo zen_href_link(FILENAME_ABOUT_US); ?>"><?php echo HEADER_TITLE_ABOUT_US; ?></a></li>
2. If you want coupons off for the whole site, go to "Modules", "Order Total", and disable the discount coupon module. If you want it off for only the drop menu, remove it from tpl_drop_menu.php:
Code:
<?php if (MODULE_ORDER_TOTAL_COUPON_STATUS == 'true') { ?>
<li><a href="<?php echo zen_href_link(FILENAME_DISCOUNT_COUPON, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_DISCOUNT_COUPON; ?></a></li>
<?php } ?>
3. If you want gift certificates off, do the same thing as #2. If you want it off only for the drop menu, remove this chunk:
Code:
<?php if (MODULE_ORDER_TOTAL_GV_STATUS == 'true') { ?>
<li><a href="<?php echo zen_href_link(FILENAME_GV_FAQ, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_GV_FAQ; ?></a></li>
<?php } ?>
4. If you specials off for the whole site, go to the tpl_drop_menu.php again, and remove it:
Code:
<li><a href="<?php echo zen_href_link(FILENAME_SPECIALS); ?>"><?php echo HEADER_TITLE_SPECIALS; ?></a></li>
5. Same as #4, but remove this chunk:
Code:
<li><a href="<?php echo zen_href_link(FILENAME_PRODUCTS_NEW); ?>"><?php echo HEADER_TITLE_NEW_PRODUCTS; ?></a></li>
If you'd like the Site Map off for the entire site, Go to your admin, to "Configuration", "Define Page Status", and turn the site map off. If you want it off for the drop menu only, remove it from tpl_drop_menu.php:
Code:
<?php if (DEFINE_SITE_MAP_STATUS <= 1) { ?>
<li><a href="<?php echo zen_href_link(FILENAME_SITE_MAP); ?>"><?php echo HEADER_TITLE_SITE_MAP; ?></a></li>
<?php } ?>
Bookmarks