vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Need help with a complicated conditional (https://vborg.vbsupport.ru/showthread.php?t=304116)

tribedude 11-03-2013 01:33 AM

Need help with a complicated conditional
 
I currently have a forum with conditionals running to show a leaderboard (ADVERTISEMENT A) below the navbar to members or else it show 3 box ads (ADVERTISEMENTS B) to other user groups.

<!-- MAIN FORUM TAG -->
<if condition="$forumid == '14'">
<if condition=" in_array($bbuserinfo[usergroupid],array(30,9))">
ADVERTISMENT A LEADERBOARD
<else />
ADVERTISEMENTS B 3 BOXES
</if>
</if>

^ is working fine.

But I need to use this and ALSO incorporate a dateline conditional to display different ad types based on the date the thread was started?

For example, I want to show members the leaderboard ad as I am doing above, but if the thread in the forum was started after 2008 show ADVERTISEMENT C and if the thread was started before 2008 just show ADVERTISEMENT A.

AND,

For all other user groups, show ADVERTISEMENT B as above if thread in the forum was started before 2009, and if the thread was started after that show ADVERTISEMENT D.

I have tried the snippet below, but it is not working as I am getting both sizes of ads showing no matter what the thread start date is or the usergroup is....

<!-- MAIN FORUM TAG MEMBERS -->
<if condition="$forumid == '14'">
<if condition=" in_array($bbuserinfo[usergroupid],array(30,9))">
<if condition="$dateline > '1230768000'">
ADVERTISMENT A LEADERBOARD
<else />
ADVERTISEMENT C LEADERBOARD
</if>
</if>
</if>
<!-- MAIN FORUM TAG GUESTS -->
<if condition="$forumid == '14'">
<if condition=" in_array($bbuserinfo[usergroupid],array(2,3,4,5,6,7,8))">
<if condition="$dateline < '1230768000'">
ADVERTISMENTS B 3 BOXES
<else />
ADVERTISEMENTS D 3 BOXES
</if>
</if>
</if>

What am I doing wrong here? Can someone point me in the right direction? Thanks.

Lynne 11-03-2013 04:12 PM

Have you verified that $dateline is a valid variable to use (print it out)?

tribedude 11-03-2013 11:58 PM

Quote:

Originally Posted by Lynne (Post 2458020)
Have you verified that $dateline is a valid variable to use (print it out)?

The suggestion to use $dateline as a variable was given to me in the vbulletin.com support forum for 3.8x by an admin.


What do you man by print it out?

Lynne 11-04-2013 03:34 AM

I mean print it out in your template:

Dateline is: $dateline


All times are GMT. The time now is 01:10 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.01040 seconds
  • Memory Usage 1,718KB
  • 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_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)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