vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Conditional Help (https://vborg.vbsupport.ru/showthread.php?t=230663)

grey_goose 12-21-2009 12:39 AM

Conditional Help
 
<if condition="is_member_of($vbulletin->userinfo, 5, 6)">
<font size="1"><div class="info" align="center"><center>$post[field41]<center><br></div></font>
</if>

This displays custom profile field 41 on the postbit_legacy if a user is a super-mod or admin. How can I make it *also* display to the user themself?

thanks!

kh99 12-21-2009 01:21 AM

Try changing the condition to :

Code:

<if condition="is_member_of($vbulletin->userinfo, 5, 6) OR ($post[userid] == $vbulletin->userinfo[userid])">

grey_goose 12-21-2009 01:45 AM

awesome! ty!

grey_goose 03-19-2010 02:25 PM

Doesn't seem to be working... any other ideas?

imported_silkroad 03-20-2010 04:20 PM

(removed.... sorry did not read the entire question... please delete, thanks.)

kh99 03-20-2010 04:59 PM

Hmm...maybe try using $bbuserinfo in place of $vbulletin->userinfo?

grey_goose 03-23-2010 11:56 AM

That didn't work either :(

grey_goose 11-08-2010 06:23 PM

Anyone else want to give it a shot? The full code is:

I want the tab to show to Admins, Mods, Usergroup 32, *AND* the poster themselves. Everything's working except the original poster can't see the tab.

<!--TAB CONTENT -->
<div id="tab8$post[postid]" class="tabcontent">
<if condition="$post['field57']">
<div style="background-color:#1A1A1A; padding:5px; border: 1px dimgrey solid">
<div class="info"><if condition="$post['field57']">$post[field57]</if></div>
<if condition="is_member_of($bbuserinfo, 5,32) OR $show['moderatethread']">
<font size="1"><div class="info" align="center"><center>$post[field70]<center><br></div></font>
</if>
<div class="info" align="center"><if condition="$post['field51']">
<img src="$post[field51]" width="100" border="1" /><br></if></div>
<div class="info"><if condition="$post['field63']"><br><font size="1"> $post[field63]</font></if></div>
</div>
</if>
</div>

kh99 11-08-2010 07:01 PM

Hey, I remember this :)

Anyway, I just tried this in my postbit_legacy template:

Code:

<if condition="$bbuserinfo[userid] == $post[userid]">
This is my post!!!
</if>

and it worked as expected, so it seems like

Code:

<if condition="is_member_of($bbuserinfo, 5,32) OR $show['moderatethread'] OR $bbuserinfo[userid] == $post[userid]">
should work for you.

(If not, this is really my last try...)

Simon Lloyd 11-09-2010 12:23 AM

I use that first part myself kh99, take a look here for some conditionals http://tech6.com/f51/vbulletin-templ...als-list-t112/

kh99 11-09-2010 01:09 AM

Thanks for the link. The problem with my first try (almost a year ago now!) is that $vbulletin isn't available in postbit so it has to be $bbuserinfo. I realized that later, so I'm not sure why the second try didn't work. Anyway, this time I decided to test it.

Simon Lloyd 11-09-2010 03:00 AM

Quote:

Originally Posted by kh99 (Post 2119712)
Thanks for the link. The problem with my first try (almost a year ago now!) is that $vbulletin isn't available in postbit so it has to be $bbuserinfo. I realized that later, so I'm not sure why the second try didn't work. Anyway, this time I decided to test it.

Yep, i had to learn that lesson too........i went over and over, reading and re-reading and was adamant i'd done it right but couldn't get it to work, stumbled across that site, tried the one you have above and bingo!

Served me right back then for being obstinate :)

grey_goose 11-09-2010 07:53 PM

Got it. I had them set as "Private" fields in Wired1's Extra Profile Fields. Taking off the 'private' flag did the trick. Now... why private would hide it from the user themselves... lol

Thanks so much.


All times are GMT. The time now is 02:22 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
  • Page Generation 0.01160 seconds
  • Memory Usage 1,738KB
  • 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_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (13)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