
Originally Posted by
JohnnyScience
When I said ghost it out I meant "comment out"
I was always just deleting code when I made changes but someone recently in another thread said its better to comment it out than delete it.
But for some reason when I try commenting out the part I have in red it wasn't working. Suggestions?
I know I can move onto other parts, it's really just this menu & the footer pop up menu that I have left to edit really and I can't figure out how to remove links from either for some reason.
Thanks for the infor.. it helps if you use more common terms.. ("ghost out" really isn't a common term)
I assume form your previous posts that this is the section you want to comment out (the "General Info").. if you comment out EVERYTHING you have in red, you will remove the top level "Info" menu and ALL of the "Info" menu items below it. Simply put the opening comment <!-- at the beginning of this block and the ending comment --> at the end of this block
Code:
<div class="col_1">
<h3><?php echo TITLE_GENERAL; ?></h3>
<ul>
<li><a href="<?php echo zen_href_link(FILENAME_ABOUT_US); ?>"><?php echo BOX_INFORMATION_ABOUT_US; ?></a></li>
<?php if (DEFINE_SITE_MAP_STATUS <= 1) { ?>
<li><a href="<?php echo zen_href_link(FILENAME_SITE_MAP); ?>"><?php echo BOX_INFORMATION_SITE_MAP; ?></a></li>
<?php } ?>
<?php if (MODULE_ORDER_TOTAL_GV_STATUS == 'true') { ?>
<li><a href="<?php echo zen_href_link(FILENAME_GV_FAQ, '', 'NONSSL'); ?>"><?php echo BOX_INFORMATION_GV; ?></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 BOX_INFORMATION_DISCOUNT_COUPONS; ?></a></li>
<?php } ?>
<?php if (SHOW_NEWSLETTER_UNSUBSCRIBE_LINK == 'true') { ?>
<li><a href="<?php echo zen_href_link(FILENAME_UNSUBSCRIBE, '', 'NONSSL'); ?>"><?php echo BOX_INFORMATION_UNSUBSCRIBE; ?></a></li>
<?php } ?>
</ul>
</div>
Bookmarks