lloydee7
11-06-2011, 11:13 PM
I am trying to use a template hook from vbcms_navbar_links in the vbcms_content_section_page template so that I can make an effective "filter" for the CMS categories but I'm having a problem getting the hook to work right. The code I'm using is as follows.
<ul class="floatcontainer">
{vb:raw template_hook.vbcms_navbar_start}
<vb:each from="links" value="link">
<li><a href="{vb:raw link.url}">{vb:raw link.title}</a></li>
</vb:each>
{vb:raw template_hook.vbcms_navbar_end}
</ul>
When I view the page source all that are shown are the ul tags so that's where I need your help.
If it's not possible, don't bother beating around the bush I'll just do it all manually, but any help that can be offered is greatly appreciated.
<ul class="floatcontainer">
{vb:raw template_hook.vbcms_navbar_start}
<vb:each from="links" value="link">
<li><a href="{vb:raw link.url}">{vb:raw link.title}</a></li>
</vb:each>
{vb:raw template_hook.vbcms_navbar_end}
</ul>
When I view the page source all that are shown are the ul tags so that's where I need your help.
If it's not possible, don't bother beating around the bush I'll just do it all manually, but any help that can be offered is greatly appreciated.