Right just discovered this problem now not sure if anyone has had a similar issue and if they did how they resolved it.
I have made a child theme of thematic and used this function to add a new sub menu.
///////////// sun menu instert below header//////////////////////////////////////
function sub_menu() { ?>
<div class="menuwrapper">
<div class="menu2">
<ul>
<li><a href="web.html">:Web</a></li>
<li><a href="graphics.html">:Graphics</a></li>
<li><a href="print.html">:Print</a></li>
<li><a href="logo.html">:Logo</a></li>
<li><a href="illustration.html">:Illustration</a></li>
<li><a href="branding.html">:Branding</a></li>
</ul>
</div>
</div>
<?php
}
add_action('thematic_belowheader', 'sub_menu');
////////////////////////////////////////////////////////////////////////////
Everything has worked fine until I activated the permalinks on my wordpress themes.
When this is activated and you navigate through the wordpress section of my site then navigate to the sub menu inserted via this function instead of removing the permalink amd insterting the .html link it adds this to the end of the permalink thus making the link invalid.
I.E
www.willforsyth.co.uk.about (about being the permalink)
Click on the link (web.html) created by the function it comes out as this
www.willforsyth.co.uk/about/web.html
instead of removing the permalink and making the link this
www.willfrosyth.co.uk/web.html
to make matters even more complicated it only adds the link to the end of the permalink when you click from the page thats created the permalink to the none wordpress page associated with the site.
Has anyone had this issue before. Its working at the moment with permalinks deactivated but I want to have the title of the permalink activated for SEO reasons.
Any ideas?