i try to add link for the page i created into the tpl_site_map_default.php file.
i created a new page named about us. all the links shows something like this in the site map
PHP Code:
<li><?php echo '<a href="' . zen_href_link(FILENAME_PRODUCTS_NEW) . '">' . PAGE_PRODUCTS_NEW . '</a>'; ?></li>
<li><?php echo '<a href="' . zen_href_link(FILENAME_SPECIALS) . '">' . PAGE_SPECIALS . '</a>'; ?></li>
<li><?php echo '<a href="' . zen_href_link(FILENAME_REVIEWS) . '">' . PAGE_REVIEWS . '</a>'; ?></li>
in order to add the new link, i simply copy tht existing link and paste it somewhere below it and just rename it like this.
PHP Code:
<li><?php echo '<a href="' . zen_href_link(FILENAME_ABOUT_US) . '">' . PAGE_ABOUT_US . '</a>'; ?></li>
the link works fine, but the name of the link appears like the pic below...
so can someone plz help me to just rename it to About Us. thnx