vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4 Articles (https://vborg.vbsupport.ru/forumdisplay.php?f=242)
-   -   vB4 Template Conditionals List (https://vborg.vbsupport.ru/showthread.php?t=231525)

Digital Jedi 01-06-2011 07:58 PM

Quote:

Originally Posted by attroll (Post 2145052)
I have tried this code below in my footer ad location and it display in all my usergroups. Is there something wrong with the code?

Code:

<vb:if condition="is_member_of($bbuserinfo, 1,2,3)">Show this to user group 1, 2, and 3</vb:if>

What did the code you used look like?

BirdOPrey5 01-06-2011 10:26 PM

Quote:

Originally Posted by attroll (Post 2145052)
I have tried this code below in my footer ad location and it display in all my usergroups. Is there something wrong with the code?

Code:

<vb:if condition="is_member_of($bbuserinfo, 1,2,3)">Show this to user group 1, 2, and 3</vb:if>

This exact code is working fine in my footer, only issue would be is if you somehow pasted it in-between some other <if> code... Also are you sure you are using vBulletin 4.x? This won't work on 3.x.

attroll 01-07-2011 02:35 AM

Damn, my bad. this web site that I am trying to get it to work on is VB3. Sorry guys. Thanks for the help anyways. It will have to wait until i upgrade to VB4.

Thnaks

BirdOPrey5 01-07-2011 02:53 AM

Quote:

Originally Posted by attroll (Post 2145251)
Damn, my bad. this web site that I am trying to get it to work on is VB3. Sorry guys. Thanks for the help anyways. It will have to wait until i upgrade to VB4.

Thnaks

The code for VB3 is very similar...

Code:

<if condition="is_member_of($bbuserinfo, 1,2,3)">Show this to user group 1, 2, and 3</if>

attroll 01-07-2011 03:35 AM

BirdOPrey5

Thank you very much. that will hold me over until I update to VB4.

shahryar_neo 01-08-2011 01:24 PM

How can I insert a banner after X posts in vb4 ?

Thanks .

BirdOPrey5 01-08-2011 05:25 PM

Assuming you mean in the postbit you'd use:
Code:

<vb:if condition="($post['postcount'] % 3) == 0">
banner code
</vb:if>

That would do it every 3rd post... change 3 to any number you want.

% is the modulus operator, it basically is the remainder in division- what you are saying in English is "when the post count is evenly divisible by 3, show the code."

stuartn 01-12-2011 10:52 PM

Well I'm really scratching my head I'm trying to get a conditional to work only if in a certain forum if but also by postcount.

Code:

<vb:if condition="!in_array($postinfo['forumid'], array(2,4))">
<vb:if condition="!in_array($post['postcount'], array(7,35,63,91,119,147,175,203))">
Ad Here for forum id's 2 & 4
</vb:if>
</vb:if>

The text is showing but at the wrong post count and in the wrong forums....

Any clues - I'm working on the postbit template.

BirdOPrey5 01-12-2011 11:46 PM

You're using the exclamation point "!" before "in_array" - the exclamation point means "NOT" so your first conditional reads "If NOT in forums 2 or 4, do something"

Just delete the !'s and you should be ok... also I'm not sure if $postinfo['forumid'] or just $post['forumid'] but one or the other should work.

stuartn 01-13-2011 08:04 AM

Found out which conditional works...in postbit

Code:

<vb:if condition="in_array($GLOBALS[forumid], array(2,4))">


All times are GMT. The time now is 02:08 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.01380 seconds
  • Memory Usage 1,741KB
  • 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
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete