vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=252)
-   -   Adding multiple condition for ads (https://vborg.vbsupport.ru/showthread.php?t=310353)

kushal 04-09-2014 02:14 PM

Adding multiple condition for ads
 
I want to introduce two condition to my ads appearing. To appear only to 'Guests', and to prevent it for appearing for 'Register' script.

Is this the way to put it?

Code:

<if condition="THIS_SCRIPT != 'register'">
<vb:if condition="$show['guest']">
<ads>

</vb:if></vb:if>


eXoOutsider 04-09-2014 03:35 PM

Quote:

Originally Posted by kushal (Post 2492263)
I want to introduce two condition to my ads appearing. To appear only to 'Guests', and to prevent it for appearing for 'Register' script.

Is this the way to put it?

Code:

<if condition="THIS_SCRIPT != 'register'">
<vb:if condition="$show['guest']">
<ads>

</vb:if></vb:if>



Hello kushal, you're nearly there, something like this would be better:

Code:

<vb:if condition="THIS_SCRIPT != 'register' AND $show['guest']">

<!-- your ads :) -->

</vb:if>

Although I'm a little rusty so I hope I haven't made any mistakes :p.

bzcomputers 04-09-2014 08:00 PM

IF you are using Google Adsense you should even be a little more strict and not post ads on a few other pages to save yourself from possible policy violations and potentially being dropped from their program. Google does not want ads displaying on any "non-content" pages.

Code:

<vb:if condition="!in_array(THIS_SCRIPT, array('error', 'misc', 'private', 'register')) AND $show['guest']">
YOUR AD HERE
</vb:if>



All times are GMT. The time now is 05:54 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.00917 seconds
  • Memory Usage 1,714KB
  • 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
  • (4)bbcode_code_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)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