That is a very odd issue, but if hllight's post just beneath yours also pertains to you:
If you tried to remove "Gift Certificate" and "Discount Coupons" (or any sections) from includes/templates/YOUR_TEMPLATE/tpl_drop_menu.php, put it back to the original.
Then go to your admin, go to "Modules", "order total" and turn off the modules there, and those items will remove themselves.
Now, if you want to use "Gift Certificate" and "Discount Coupons", but just don't want them from the menu, be sure to remove ONLY the relevant code:
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 } ?><?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 } ?>
Its confusing because of the way I formatted the code, will fix that in my next release. But remember that the <?php } ?> comes after the section you're removing, not before.
Bookmarks