Zen Follower
- Join Date:
- Sep 2011
- Location:
- Toronto, Ontario, Canada
- Posts:
- 290
- Plugin Contributions:
- 0
ezPage doesn't show up in header menu
My site: http://www.prestigelivingcanada.com/ibnest has a menu item called "Recipes", this is supposed to show a html page. What I did is I create a ezpage, the id is 15 and I set it to show in header with location 200. The header menu is created using the following code:
<li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a> | </li> <li><a href="index.php?main_page=specials"><?php echo HEADER_TITLE_LATEST_PROMOTION; ?></a> | </li> <li><a href="index.php?main_page=index&cPath=21"><?php echo HEADER_TITLE_BIRDS_NEST; ?></a> | </li> <li><a href="index.php?main_page=index&cPath=1"><?php echo HEADER_TITLE_READY_TO_SERVE; ?></a> | </li> <li><a href="index.php?main_page=index&cPath=13"><?php echo HEADER_TITLE_INSTANT_SLIMMING_MEAL; ?></a> | </li> <li><a href="index.php?main_page=index&cPath=9"><?php echo HEADER_TITLE_CHINESE_HEALTH_SUPPLEMENT ; ?></a> | </li> <li><a href="index.php?main_page=index&cPath=17"><?php echo HEADER_TITLE_WILD_CORDYCEPS; ?></a> | </li> <li><a href="index.php?main_page=index&cPath=12"><?php echo HEADER_TITLE_SEA_FOOD; ?></a> | </li> <li><a href="index.php?main_page=index&cPath=11"><?php echo HEADER_TITLE_SOUP_INGREDIENTS; ?></a> | </li> <li><a href="index.php?main_page=index&cPath=15"><?php echo HEADER_TITLE_INSTANT_CANNED_ABALONE; ?></a> | </li> <li><a href="index.php?main_page=index&cPath=14"><?php echo HEADER_TITLE_HEALTHY_DRINK; ?></a> | </li> <li><a href="index.php?main_page=index&cPath=8"><?php echo HEADER_TITLE_DIETARY_SUPPLEMENT; ?></a> | </li> <li><a href="index.php?main_page=index&cPath=10"><?php echo HEADER_TITLE_LIFE_CONCEPT_BEVERAGE; ?></a> | </li> <li><a href="index.php?main_page=index&cPath=18"><?php echo HEADER_TITLE_GIFT_BOX; ?></a> | </li> <li><a href="index.php?main_page=index&cPath=19"><?php echo HEADER_TITLE_RECIPE; ?></a> | </li> <li><?php echo '<a href="' . zen_href_link(FILENAME_CONTACT_US) . '">'; ?><?php echo HEADER_TITLE_CONTACT_US; ?></a> | </li> <?php if ($_SESSION['customer_id']) { ?> <li><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a> | </li> <li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a> | </li>I don't see the ezpage shows up anywhere in the menu, the menu does show up a "recipes" but that's from the tpl_header.php.
Can someone tell me what is missing/wrong? Thank you so much.