PDA

View Full Version : Hiding Posts From Guests



admin
14-03-2010, 03:34 PM
This Will Hide EVERY post on the thread from Guest's

Open postbit_legacy or postbit (Works with both)

Find:

{vb:raw post.message}

Replace With:

<vb:if condition="$show['member']">
{vb:raw post.message}
<vb:else />
<br /><br />
<div align="center">
Please login, or <a href="./register.php"><u>register</u></a> to view message content.
</div>
</vb:if>

This will JUST hide the threads PRIMARY (FIRST) post of the thread, and show the rest of the posts (replies to first post) to the guest's

Find:

{vb:raw post.message}

Replace With:

<vb:if condition="$show['member']">
{vb:raw post.message}
<vb:else />
<br /><br />
<vb:if condition="$post[postcount] == 1">
<div align="center">
Please login, or <a href="./register.php"><u>register</u></a> to view message content.
</div>
<vb:else />
{vb:raw post.message}
</vb:if>
</vb:if>

This will SHOW the threads PRIMARY (FIRST) post of the thread, and HIDE the rest of the posts (replies to first post) to the guest's

Find:

{vb:raw post.message}

Replace With:

<vb:if condition="$show['member']">
{vb:raw post.message}
<vb:else />
<br /><br />
<vb:if condition="$post[postcount] != 1">
<div align="center">
Please login, or <a href="./register.php"><u>register</u></a> to view message content.
</div>
<vb:else />
{vb:raw post.message}
</vb:if>
</vb:if>

Enjoy http://www.vbulletin.org/forum/images/smilies/smile.gif