The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
![]()
On my board field11 is Gender with three options Male, Female and Undisclosed.
How do I write a conditional so that when field11 equals to certain gender, certain text appears? Thank you, |
#2
|
||||
|
||||
![]()
Where?
In the postbit: Code:
<if condition="$post['field11'] != 'Undisclosed'"><div>$post[field11]</div> Code:
<if condition="$userinfo['field11'] != 'Undisclosed'">$userinfo[field11] |
#3
|
|||
|
|||
![]()
sir adrian may be you can help me, what i am trying to code using vbulletin conditionals is female/male/online/offline status icon.
So far i came up with this code, but it doest seem to work. Any ideas? HTML Code:
<if condition="$post['field11'] != 'Male'"> <if condition="$onlinestatus==0"> <img src="http://www.site.com/forums/gender/sex_m.gif" border="0"> </if> <if condition="$onlinestatus==1"> <img src="http://www..site.com/forums/gender/sex_m_on.gif" border="0"> </if> </if> <if condition="$post['field11'] != 'Female'"> <if condition="$onlinestatus==0"> <img src="http://www.site.com/forums/gender/sex_f.gif" border="0"> </if> <if condition="$onlinestatus==1"> <img src="http://www.site.com/forums/gender/sex_f_on.gif" border="0"> </if> </if> |
#4
|
||||
|
||||
![]()
Your logic doesn't make any sense to me.
!= means not equal to Anyway, I would do it this way: Code:
<img src="images/sex_<if condition="$post['field11'] == 'Female'">f<else />m</if><if condition="$onlinestatus == 1">_on</if>.gif" border="0" alt="" /> |
#5
|
|||
|
|||
![]()
nice, the only problem is when I put this into postbit_onlinestatus template it ignores field11 (gender) conditional and shows only one, wrong online/offline gender picture, and if I put it into postibit or posbit_legacy template it ignores onlinestatus conditional, showing the right gender but not showing online/offline.
|
#6
|
|||
|
|||
![]()
anyone?
|
#7
|
|||
|
|||
![]()
...help!
|
#8
|
|||
|
|||
![]()
I don't think postbit_onlinestatus knows what field11 is. You may need to do something else in addition to show custom fields in the postbits.
|
#9
|
|||
|
|||
![]()
yeah it doesn't...is there anyway to integrate?
|
![]() |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|