![]() |
Conditionnal number to posts
Hey :)
I search a conditionnal for limit to acces (show) with the number to posts please ;) |
In what context?
|
in the template, for hide to text for example if the member don't have x posts
|
Check the hide hacks out. I know that one of them has a post count requirement, so it is possible that some of the others do too.
|
There is no need to use a hack for this if you wish to add it directly to the template, simply doing the following will work:
<if condition="$vbulletin->userinfo['posts'] > 10"> Hidden text </if> Obviously change the number 10 with the minimum amount of posts required to view the text. If you want to do this inside a post, you will need to install a hide hack. Hope this helps :) |
Don't work
i test with so <if condition="$vbulletin->userinfo['posts'] = 10"> idem, don't work :( |
That's because you're setting their post count to 10 rather than comparing it. If you want to show it only when they have exactly 10 posts you need to use == like so:
<if condition="$vbulletin->userinfo['posts'] == 10"> However if you want to show only if they have more than 10 posts you need to use > like so: <if condition="$vbulletin->userinfo['posts'] > 10"> ..and to show only if they have less than 10 posts you use < like so: <if condition="$vbulletin->userinfo['posts'] < 10"> |
For me, it doesn't work :p
I test with a member with 2 post, with this in the template postbit: Code:
<if condition="$vbulletin->userinfo['posts'] > 10"> With me account (more 3000 posts), the text "Test more 10 posts" Doesn't appear so I don't understand why that don't work :p |
Code:
<if condition="$bbuserinfo[posts] > 10"> |
Quote:
|
erm, whats with the
Code:
$vbulletin->userinfo Code:
$bbuserinfo |
Humm ok, it's more clear, thanks Kerry-Anne, Paul41598 and Xoligy ;)
|
All times are GMT. The time now is 04:15 PM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|