vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   Hide something from specified Usergroups (https://vborg.vbsupport.ru/showthread.php?t=152676)

mclark2112 07-18-2007 11:22 PM

Hide something from specified Usergroups
 
I'm sure it is quick and easy, but I'm no programmer.

I am running Adsense ads in my templates with just the straight Google code. I want to just put a couple variables around the ad script so it does not show to certain usergroups, can someone help?

HMBeaty 07-18-2007 11:43 PM

To remove your Adsense from the view of certain usergroups, you can simply use a conditional in your templates. Just place this around your code you wish to remove from the view of your usergroups....
HTML Code:

<if condition="!is_member_of($vbulletin->userinfo, 1, 2, 3)"></if>
And replace "1, 2, 3" with the usergroups you do NOT want to show the ads to.

brfrankl 07-19-2007 03:14 AM

Trying to use a slight modification of this for the code block template

I have:

Code:


<if condition="is_member_of($vbulletin->userinfo, 2, 5, 6, 7)">
is member
</if>

<if condition="!is_member_of($vbulletin->userinfo, 2, 5, 6, 7)">
is not member
</if>


Also tried this

Code:

<if condition="is_member_of($vbulletin->userinfo, 2, 5, 6, 7)">
is member
<else />
is not member
</if>

and finally this

Code:

<if condition="is_member_of($bbuserinfo, 2, 5, 6, 7)">
is member
<else />
is not member
</if>



Problem is that guests still see "is member". or registered users see is_not_member (depends on which one)

guests are not logged in and should be group 1 and thus should hit the second if clause.

registered and logged in should be group 2 and hit first one.


any ideas?

TheMilkCarton 07-19-2007 11:11 AM

You could try
Code:

<if condition="$show['member']">
is member
<else />
is not member
</if>

or
Code:

<if condition="$show['guest']">
is not member
<else />
is member
</if>

I'm not sure if you can use those variables in all templates, though.

Not sure why your code isn't working. I'm tired though. :)

You could also try this:
Code:

<if condition="is_member_of($bbuserinfo, 2, 5, 6, 7)">
is member
<else />
<if condition="is_member_of($bbuserinfo, 1)">
is not member
</if>
</if>

It's redundant, but if the "is not member" code is still showing to members then something is wrong. :)

mclark2112 07-19-2007 11:30 AM

Very cool, I will try tonight.

Thank You all for the help.

Matt


All times are GMT. The time now is 08:13 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.00969 seconds
  • Memory Usage 1,721KB
  • 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
  • (6)bbcode_code_printable
  • (1)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