MyBB Community Forums

Full Version: User post count conditional help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Guys how to show a code to users that have less than 10 post < 10

I have this code by D666 for users with post count 0

<if $mybb->user['uid'] && $mybb->user['postnum'] == 0 then>
My Code
</if>
Well, just replace the operator and number..
<if $mybb->user['uid'] && $mybb->user['postnum'] < 10 then>
My Code
</if> 
D666 again you have just saved the day I was actually thinking about it thanks very much you are great