Here's a quick one.
In my navigation.xml
I have this type of structure.
<faq>
<label>FAQ</label>
<uri>/frequently-asked-questions</uri>
<controller>faq</controller>
<action>index</action>
</faq>
When using the view helper $this->navigation()->menu()
is there a way to display the uri as the link, instead of the normal link that is generated through the controller/action structure?
for example I don't want the helper to render <a href="/faq">FAQ</a>
like it normally would, I want it to render <a href="/frequently-asked-questions">FAQ</a>
. (the uri's tie in with my Routes)
Thanks for any help, I'm a little bit stuck on this one.
Cheers.