hi
i created a custom template like
this, and im trying to put subscribed forums on it. once thats done i'd want to create such templates to display other usercp data as well.
i found the subscribed forums piece in usercp template:
Code:
<vb:if condition="$show['forums']">
<!-- ############## SUBSCRIBED FORUMS ############## -->
<div class="block" id="new_subscribed_forums">
<h2 class="blockhead">{vb:rawphrase subscribed_forums}</h2>
<ol class="blockbody settings_form_border" id="forumlist">
{vb:raw forumbits}
</ol>
</div>
<!-- ############## END SUBSCRIBED FORUMS ############## -->
</vb:if>
am putting it in my custom template, it shows a page with header/footer but no content. if i remove the first/last line - the page shows blockhead (without h2 text on it) and nothing further.
i assume i need to find that show forums conditional and adjust it, but i don't know how to do it.
any input very genuinely appreciated