Quote Originally Posted by picaflor-azul View Post
The sitemap link in the header menu in the demo does work. It is true that if you click on general info, you get the page not found.

You can fix the link by changing this:

Code:
<li><a href="<?php echo BOX_INFORMATION_SITE_MAP; ?>">General Info</a>
to this:

Code:
<li><a href="<?php echo zen_href_link(FILENAME_SITE_MAP); ?>">General Info</a>
Thanks,

Anne
For multiple languages sites, replacing this with the following pulls "General Info" in other languages.

Code:
<li><a href="<?php echo zen_href_link(FILENAME_SITE_MAP); ?>"><?php echo TITLE_GENERAL; ?></a>