
Originally Posted by
dolzer
That is a very odd issue, but if hllight's post just beneath yours also pertains to you:

Originally Posted by
hllight
This isn't a fix but rather a possible cause. I had a similar problem when I attempted to delete "Gift Certificate" and "Discount Coupons" from the drop down menu. I deleted the the associated instruction from the php file and instead of deleting them, I got a similar message. I replaced the file with the original and was back where I started with the Certificate and Coupon menu items.
This just happened yesterday and I decided to move on with more important modifications and wait till another day to remove the menu items. I don't have a solution yet. BUT I WILL and will let you know when I do. Probably not much help but I tried.
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