PDA

View Full Version : Forum Home Enhancements - Hide Lastest Post From Guests


Eplexx
04-16-2011, 10:00 PM
I just wanted to disable guests from viewing the last post so I edited the last post. Looks like this:

http://screensnapr.com/e/psiNnt.png

You can customize the message, color etc.

How to do it:

1. Goto: forumhome_lastpostby and put this code at the top:
<if condition="$show['guest']">
<font color="#ff0000">[Register to see last post]</font>
</if>

2. Find:
<if condition="$show['lastpostinfo']">

and add this above:
<if condition="$show['member']">

3. Find:
<a href="showthread.php?$session[sessionurl]p=$lastpostinfo[lastpostid]"><img class="inlineimg" src="$stylevar[imgdir_button]/lastpost.gif" alt="$vbphrase[go_to_last_post]" border="0" /></a>

and add this below:
</if>

If you have any issues just post and I can help you, there are loads of things you'd be able to but I just customized it for disabling the guest viewing.

s.sami
04-19-2011, 07:29 AM
how can i hide which i choose members or ranks ? also which i want categories? : )

thanks

Eplexx
04-20-2011, 11:10 PM
how can i hide which i choose members or ranks ? also which i want categories? : )

thanks

<if condition="is_member_of($bbuserinfo, 1, 2, 3)">[Register to see last post]</font>
</if>

Is this what your asking?