I'm trying to make the tab to collapse the sidebar only visible to paid members, I want everyone else to be unable to collapse it.
Would this be the correct edit to the forumhome template?
Code:
<a id="sidebar_button_link" href="#">
<vb:if condition="is_member_of($bbuserinfo, 9,10,11)">
<vb:if condition="$show['sidebarposition'] == 'left'">
<img id="sidebar_button" src="{vb:stylevar imgdir_misc}/tab-collapsed-left.png" alt="" />
<vb:else />
<img id="sidebar_button" src="{vb:stylevar imgdir_misc}/tab-collapsed.png" alt="" />
</vb:if>
</vb:if>
</a>
thanks in advance