What I want is to display some HTML when a user has less than X amount of posts, any ideas on how to achieve this?
Thanks very much
--------------- Added [DATE]1240179092[/DATE] at [TIME]1240179092[/TIME] ---------------
I have tried this:
Code:
<if condition="$post['postcount'] < '25'">
<div>
<p>THIS WILL SHOW IF YOU HAVE UNDER 25 POSTS
THIS IS A TEST IGNORE ME!!!!!!</p></div>
<else />
<div><p>THIS WILL SHOW IF YOU HAVE OVER 25 POSTS THIS IS A TEST IGNORE ME!!!!</p></div>
</if>
But no such luck.
--------------- Added [DATE]1240179940[/DATE] at [TIME]1240179940[/TIME] ---------------
I have also tried this with no luck
Code:
<if condition="$bbuserinfo[maxposts]==25">
<p>This is a test ignore me</p>
<else />
<p>Testing</p>
</if>