PDA

View Full Version : Post Count Conditional HELP!


Sweeks
04-19-2009, 09:29 PM
I want to display some HTML to members with less than 25 posts in a template, how can this be achieved. Thank you

BBR-APBT
04-19-2009, 09:35 PM
I want to display some HTML to members with less than 25 posts in a template, how can this be achieved. Thank you

This should work.

<if condition="$bbuserinfo['postcount'] > '25'">

Html code here

</if>

Sweeks
04-19-2009, 09:38 PM
Thanks mate, Ive just tried it but no luck.

<if condition="$bbuserinfo['postcount'] > '25'">
<p>This is a test ignore me</p>
<else />
<p>Testing</p>
</if>

It will show Testing to all users.

--------------- Added 1240180803 at 1240180803 ---------------

I have just tested without the <else /> and it works a charm, how can I get it to work with the else ?

--------------- Added 1240180852 at 1240180852 ---------------

Actually, take that back it doesnt show at all using that lol :)

Lynne
04-19-2009, 09:45 PM
"posts" is the field in the user table. However, it gets formatted usually (so if you have over 1000 posts, it will show at 1,000). You can't do a condition on the formatted number which means you need to somehow get the unformatted number to use for your condition.

Also, the name of the variable is just about always dependent on what template you are using it in, or what hook location.

Sweeks
04-19-2009, 09:48 PM
Ahh so this needs a plugin then, well that's my luck up lol I dont know any PHP yet, I did see this thread but not sure how to modify it to work as what I want:

https://vborg.vbsupport.ru/showpost.php?p=1516736&postcount=1

--------------- Added 1240182164 at 1240182164 ---------------

Got it working, not the same as I wanted but still :D Thank you.