It appeared our sitemap was not working in the new version of Sugar 6 CE, but after a little research I found that it is not available in the "classic" theme of Sugar 6 CE which comes standard.

I have looked for alternate themes for sugar 6 but the only one I can find is the aqua theme and have heard it is not that great.

Either, is there another simple and fast theme or is it possible to add the sitemap to the "classic" theme?

I have located the sitemap.tpl file in the /modules/Home directory, so I know the mapping exists.

I have also found the header.tpl in the /themes/Sugar5/tpls directory which looks like this:

Code:
{include file="_head.tpl" theme_template=true}
<body onMouseOut="closeMenus();">
{$SUGAR_DCJS}
<div id="header">
    {include file="_companyLogo.tpl" theme_template=true}
    {include file="_globalLinks.tpl" theme_template=true}
    {include file="_welcome.tpl" theme_template=true}
    <div class="clear"></div>
    {include file="_headerSearch.tpl" theme_template=true}
    <div class="clear"></div>
    {if !$AUTHENTICATED}
    <br /><br />
    {/if}
    {include file="_headerModuleList.tpl" theme_template=true}
    <div class="clear"></div>
    <div class="line"></div>
    {if $AUTHENTICATED}
    {include file="_headerLastViewed.tpl" theme_template=true}
    {include file="_headerShortcuts.tpl" theme_template=true}
    {/if}
</div>
I don't see any reference to the sitemap file, can I just add it hear?


Also when I inspect the "sitemap" element from the browser the following code is listed but has nothing inside the division except the text "sitemap" and this gives me the idea that I can just add coding to allow the functionality of the sitemap:

Code:
<div id="sitemapLink">
    <span id="sitemapLinkSpan">
        Sitemap
        <img src="themes/Sugar5/images/MoreDetail.png?c=1">
    </span>
</div>
Any thoughts, comments or help is appreciated. Thanks
-Brian