Quote:
Originally Posted by cooltechie
Is there an option to only show this for members only and not for guests?
|
The easiest way would be to add
this in your forumhome_latest template
Code:
<if condition="$show['member']">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
<tr>
<td class="tcat" colspan="3">$vboptions[latest_title_name]</td>
</tr>
<tr>
<td class="thead" width="$vboptions[latest_post_width]">
<phrase 1="$vboptions[latest_number]">$vbphrase[latest_posts]</phrase>
</td>
<td class="thead" width="$vboptions[latest_forum_width]">
$vbphrase[latest_forum]
</td>
<td class="thead" width="$vboptions[latest_user_width]">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_latest')"><img id="collapseimg_forumhome_latest" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_latest].gif" alt="" border="0" /></a>
$vbphrase[latest_author]
</td>
</tr>
</thead>
<tbody id="collapseobj_forumhome_latest" style="$vbcollapse[collapseobj_forumhome_latest]">
$latest_post_bits
</tbody>
</table>
<br />
</if>