Log in

View Full Version : Template Conditional Help


Hard*Drive
05-16-2007, 03:33 PM
Hello,

I would like to be able to show something in a template only to users who have over 10 posts.

How could this be most easily done?

I was thinking a possible tempalte conditional?

Many Thanks

Lynne
05-16-2007, 09:05 PM
In some templates, the post count is already available to you (like in the postbit and postbit_legacy templates) and so it would be very easy to do an "if" conditional based on the postcount. However, the users postcount is not available for use in all pages and so you may have to do a query in the php first.

Dismounted
05-17-2007, 06:26 AM
The user's userinfo is available in every template (atleast every I can think of). Use this:
<if condition="$bbuserinfo['postcount'] >= 10">CODE HERE</if>