vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   image display determined by user group status (https://vborg.vbsupport.ru/showthread.php?t=63731)

dreamhost 04-10-2004 08:55 PM

image display determined by user group status
 
We have vb setup with "premium" forum areas where only members of a certain "group" in vb have access. That part is pretty much a standard feature in vbulletin.
What I was hoping to accomplish is to have an image in my header that shows up if a person is not a member of that group in vbulletin, suggesting that they signup for that section. Once they have signed up it would switch to another graphic saying thankyou with a link attached to it describing the new features available to them.

Has anyone done this type of mod before?
Any help or files would be greatly appreciated.

thanks in advance

Zachery 04-10-2004 08:58 PM

Quote:

Originally Posted by dreamhost
We have vb setup with "premium" forum areas where only members of a certain "group" in vb have access. That part is pretty much a standard feature in vbulletin.
What I was hoping to accomplish is to have an image in my header that shows up if a person is not a member of that group in vbulletin, suggesting that they signup for that section. Once they have signed up it would switch to another graphic saying thankyou with a link attached to it describing the new features available to them.

Has anyone done this type of mod before?
Any help or files would be greatly appreciated.

thanks in advance

<if condition="!is_member_of($bbuserinfo, X)"> Img code for anyone not paying </if>
Replace X with the usergroup that is doating / paying
:)

dreamhost 04-10-2004 09:04 PM

Quote:

Originally Posted by Zachery
<if condition="!is_member_of($bbuserinfo, X)"> Img code for anyone not paying </if>
Replace X with the usergroup that is doating / paying
:)

when i try that i get the following message:
The following template conditional expression contains function calls:

<if condition="!is_member_of($bbuserinfo, 6)">

Function Name Usage in Expression
is_member_of is_member_of($bbuserinfo, 6)

With a few exceptions, function calls are not permitted in template conditional expressions. Please go back and re-write this expression.

The following functions are allowed in template conditional expressions:
in_array() is_array() is_numeric() isset() empty() defined() array() can_moderate() can_moderate_calendar() exec_switch_bg()


I was putting that in the header template.
ideas?

Zachery 04-10-2004 09:15 PM

Quote:

Originally Posted by dreamhost
when i try that i get the following message:
The following template conditional expression contains function calls:

<if condition="!is_member_of($bbuserinfo, 6)">

Function Name Usage in Expression
is_member_of is_member_of($bbuserinfo, 6)

With a few exceptions, function calls are not permitted in template conditional expressions. Please go back and re-write this expression.

The following functions are allowed in template conditional expressions:
in_array() is_array() is_numeric() isset() empty() defined() array() can_moderate() can_moderate_calendar() exec_switch_bg()


I was putting that in the header template.
ideas?

try
<if condition="is_member_of($bbuserinfo, 6)"><else /> img code here instead </if>

dreamhost 04-10-2004 09:32 PM

Quote:

Originally Posted by Zachery
try
<if condition="is_member_of($bbuserinfo, 6)"><else /> img code here instead </if>

same error:
The following template conditional expression contains function calls:

<if condition="is_member_of($bbuserinfo, 6)">

Function Name Usage in Expression
is_member_of is_member_of($bbuserinfo, 6)

With a few exceptions, function calls are not permitted in template conditional expressions. Please go back and re-write this expression.

The following functions are allowed in template conditional expressions:
in_array() is_array() is_numeric() isset() empty() defined() array() can_moderate() can_moderate_calendar() exec_switch_bg()


is there maybe a place in vb that i am supposed to define what functions are allowed to be called?
what is happening is when i input that code into my header, and click submit and reload, i get that error and it asks me to return to my header editor, with the new code allready taken out.

Zachery 04-10-2004 09:37 PM

Quote:

Originally Posted by dreamhost
same error:
The following template conditional expression contains function calls:

<if condition="is_member_of($bbuserinfo, 6)">

Function Name Usage in Expression
is_member_of is_member_of($bbuserinfo, 6)

With a few exceptions, function calls are not permitted in template conditional expressions. Please go back and re-write this expression.

The following functions are allowed in template conditional expressions:
in_array() is_array() is_numeric() isset() empty() defined() array() can_moderate() can_moderate_calendar() exec_switch_bg()


is there maybe a place in vb that i am supposed to define what functions are allowed to be called?
what is happening is when i input that code into my header, and click submit and reload, i get that error and it asks me to return to my header editor, with the new code allready taken out.

is_member_of is a default function O.o

dreamhost 04-10-2004 09:41 PM

Quote:

Originally Posted by Zachery
is_member_of is a default function O.o

any ideas why it kicks it out when i try to insert it into the header?

here is exactly what i am inserting into the header template editor:

<if condition="is_member_of($bbuserinfo, 6)"><else /><a href="url to file"><img src="url to my image"></a> </if>

when i put that into the header area, and click submit, that's when i get the error.. it keeps kicking it out and won't allow me to input that anywhere.

magnus 04-11-2004 12:09 AM

is_member_of() cannot be called via templates. Try this instead:

HTML Code:

<if condition="$bbuserinfo[usergroupid]==6"><a href="url to file"><img src="url to my image"></a></if>

dreamhost 04-11-2004 12:19 AM

Quote:

Originally Posted by magnus
is_member_of() cannot be called via templates. Try this instead:

HTML Code:

<if condition="$bbuserinfo[usergroupid]==6"><a href="url to file"><img src="url to my image"></a></if>

Whooohoooo that got it to show up!
thank you

one thing i would like to change:
the way this works as is shows a picture if you are in the admin group.
What I want to do:
if the person is a regular member and not a member of group 10 (superuser) I want the graphic to show up. Once the person is a member of group #10, then they would get another graphic.
concept is it's a "banner" add that asks them to become a supporter, they get a banner to click that sends them to the page to become a supporter.
Once they join, they then get a new banner with the link to their new areas of access.
As a member can be a member of multiple groups at one time, such as group#2 (registered), and also be a superuser, i'm not sure how to write the code to have the group #10 membership over-ride the banner add, and only show the access banner.

any help is appreciated, and many thank you's to the help allready provided.


All times are GMT. The time now is 05: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.01087 seconds
  • Memory Usage 1,749KB
  • 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
  • (2)bbcode_html_printable
  • (7)bbcode_quote_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