Quote:
Originally Posted by maar3amt
Yes this code work if user ha less than 1,000 posts if have higher don't work propely.
|
Yes, that is correct. The variable is actually a formatted variable and so if you wish to do comparisons to it with numbers greater than 1,000, you need to deal with it using php code and thus in a plugin.
edit to add: You can always do the reverse comparison and it should work:
HTML Code:
<if condition="$post[posts] <= 200">
I have less than 200 posts
<else />
I have more than 200 posts
</if>