vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Postbit conditional based on profile field (https://vborg.vbsupport.ru/showthread.php?t=116535)

thisgeek 05-24-2006 08:19 AM

Postbit conditional based on profile field
 
I'm probably using the wrong approach with what I'm trying to do:

I've added some custom profile fields and have them displayed on the postbit. Now, I would like to give users the option of turning the display of these fields off when they view threads.

To enable the choice, I've created a user profile field of type Single Selection Radio buttons, with the values of 'Yes' and 'No', the question being "Do you wish to display blah". The field name is field25.

In the postbit template, I want to surround my custom field display code with an if conditional that applies to the user viewing the page, and does not apply to the post, but I can't figure out quite how to do that.

I've tried:

HTML Code:

<if condition="$bbuserinfo['field25'] == Yes"> Custom code goes here</if>
and I've tried:

HTML Code:

<if condition="$userinfo['field25'] == Yes">Custom code goes here</if>
Neither of those methods work.

I've even tried just printing out the value of field25 by using displaying it without any if conditionals ($userinfo[field25]) but it is empty.

What am I doing wrong?

Boofo 05-24-2006 08:25 AM

Try:

HTML Code:

<if condition="$post['field25'] == 'Yes'">Custom code goes here</if>

thisgeek 05-24-2006 08:45 AM

But surely the $post variable applies only to a particular user's post?
It won't have an effect on the person actually viewing the thread.
So, if *I* set the option to No, only my own posts would not display the code, and nobody would be able to see it, despite the setting in their profile.

I'm not sure if I'm getting my concept across correctly. I want my field25 code to behave similarly to the users own 'show signature' option. That is, if I set View Signatures to YES in my own profile, then I can see everybody's sigs on their posts. If I set it to NO in my profile, then I can't see anybody's sigs in their posts.

Boofo 05-24-2006 10:11 AM

Then use postinfo instead of post.

peterska2 05-24-2006 03:05 PM

Code:

<if condition="$bbuserinfo[field25]=='Yes'">Code</if>
Make sure that the yes is exactly the same as in the profile field, ie capitalisation.

If it doesn't work, let me know and I'll have another look at it when I have more time later tonight.


All times are GMT. The time now is 02:39 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.00920 seconds
  • Memory Usage 1,717KB
  • 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
  • (1)bbcode_code_printable
  • (3)bbcode_html_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (5)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