I'm trying to add a drop down menu with the forum sections to the mobile template.
I think I've got half way there by copying the code from the quick links at the bottom of the desktop:
Code:
<ul>
<vb:each from="jumpforumbits" value="data">
<vb:if condition="$data['type'] == 'link'">
<li><a href="{vb:link forum, {vb:raw data.forum}}">{vb:raw data.forum.title_clean}</a></li>
</vb:if>
</vb:each>
</ul>
I'd like to exclude the sub forums though, there seems to be a data.forum.depth value which I can write to the screen, but I can't work out how to check it it the if statement... <vb:if condition="$data['depth'] == 1"> doesn't work.