Hi,
I'm planning to give certain users (ie: uregistered users) a short version of the 2nd and later posts of a thread. I've tried everything in the postbit with the $post[message] variable, but it seems that some HTML code inside it makes me impossible to do so.
Any ideas?
Any HTML free variable that I should use in the postbit?
Quote:
<!---Hide following posts to guests-->
<if condition="$show['guest']">
<if condition="$post[postcount] == 1">
$post[message]
<else />
<img src="/images/Stop_hand.png" alt="$post[prepared]" border="0">
<strong> You have to <a href="/register.php">register </a> to see the whole thread
</strong>
</if>
<else />
$post[message]
</if>
<!---/Hide following posts to guests-->
|