vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Profile Field Conditionals (https://vborg.vbsupport.ru/showthread.php?t=137893)

Sychev_S 01-29-2007 11:57 PM

Profile Field Conditionals
 
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,

Adrian Schneider 01-29-2007 11:59 PM

Where?

In the postbit:
Code:

<if condition="$post['field11'] != 'Undisclosed'"><div>$post[field11]</div>
Profile:
Code:

<if condition="$userinfo['field11'] != 'Undisclosed'">$userinfo[field11]
etc

Sychev_S 01-30-2007 01:34 AM

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>


Adrian Schneider 01-30-2007 03:02 AM

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="" />
May need to wrap the whole thing in another condition to see if they entered a gender or not... but that is easy.

Sychev_S 01-30-2007 05:42 AM

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.

Sychev_S 02-02-2007 12:04 AM

anyone?

Sychev_S 02-03-2007 08:24 PM

...help!

thincom2000 02-03-2007 10:00 PM

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.

Sychev_S 02-03-2007 10:08 PM

yeah it doesn't...is there anyway to integrate?


All times are GMT. The time now is 05:53 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01073 seconds
  • Memory Usage 1,728KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_code_printable
  • (1)bbcode_html_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (9)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete