vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 Design and Graphics Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=253)
-   -   forumid conditional help in templates please? (https://vborg.vbsupport.ru/showthread.php?t=265424)

GCC LLC 06-18-2011 04:38 PM

forumid conditional help in templates please?
 
I'm trying to edit my forumhome_lastpostby template to display a banner only for a certain forumid. Here's the conditional I'm using, which is not working. Any help is appreciated:

<vb:if condition="$forum['forumid'] == 38">
<div style="float:right;">banner here</div>
</vb:if>

I've also tried $foruminfo['forumid'], and I've even tried making a plugin to register a new variable and then using that in the conditional as follows:

$thisforumid = $forum['forumid'];
vB_Template::preRegister('forumhome_lastpostby',ar ray('thisforumid' => $thisforumid));

Any suggestions? This was so easy in vb3, crazy how it's so difficult (or I'm just missing something terribly easy) in vB4.

Thanks in advance!

Lynne 06-18-2011 07:21 PM

For that template, I would try the variable $threadinfo instead of $forum.

GCC LLC 06-18-2011 08:41 PM

1 Attachment(s)
Quote:

Originally Posted by Lynne (Post 2209561)
For that template, I would try the variable $threadinfo instead of $forum.

Nothing still shows up using $threadinfo. I tried it both of the following ways:

1) Placing $threadinfo['forumid'] directly in the conditional:
<vb:if condition="$threadinfo['forumid'] == 38">
<br /><br />
<div style="float:right;">banner here</div>
<br /><br />
</vb:if>

2) Creating a plugin to register the variable $thisforumid and then placing that in the forumhome_lastpostby template:

Plugin:
$thisforumid = $threadinfo['forumid'];
vB_Template::preRegister('forumhome_lastpostby',ar ray('thisforumid' =>
$thisforumid));

Template:

<vb:if condition="$thisforumid == 38">
<br /><br />
<div style="float:right;">banner here</div>
<br /><br />
</vb:if>

For what it's worth, forumid 38 is the parent forum and there are several subforums below it. I'm assuming that the parent forum ID I need to use here, as that's how it's cycling through on FORUMHOME to show all of the forums. I have, however, also tried putting both the parent and subforum ID's all in an in_array conditional as well - which also didn't work. Screenshot is attached here for review.

Boofo 06-18-2011 08:46 PM

Try $lastpostinfo instead of $threadinfo or $forum.

GCC LLC 06-18-2011 09:09 PM

Ok, just a quick update...I changed the plugin to this:

$thisforumid = $forum['forumid'];
vB_Template:reRegister('forumhome_lastpostby',arra y('thisforumid' =>
$thisforumid));

Then, I moved the hook location for the plugin to forumbit_display and now the variable $thisforumid is available and displays within FORUMHOME in the correct place...

The problem is - it displays the forumid in the forum below where it's supposed to be.

For example, the lastpostby area does not show anything for the first forum. However, in the lastpostby area for the SECOND forum, it shows the forumid of the FIRST forum. In the 3rd forum, it shows the forumid of the second forum, etc. until the end of the list.

Does that help shed any light on things? Maybe with combined brains, we can figure this out.

--------------- Added [DATE]1308435240[/DATE] at [TIME]1308435240[/TIME] ---------------

Just tried that too, Boofo..

<vb:if condition="$lastpostinfo['forumid'] == 38">
<br /><br />
<div style="float:right;">forum 38 banner here</div>
<br /><br />
</vb:if>

Nothing shows up when I do that, either unfortunately.

Boofo 06-18-2011 10:08 PM

This is what I use at the very top of my forumhome_lastpostby template and it works fine. You need the else. Also add </vb:if> to the very bottom of the template.

Code:

<vb:if condition="$lastpostinfo['forumid'] == '36'">
        <div>&nbsp;</div>
        <div style="text-align: center;">
        VIP Forum
        </div>
<vb:else />



All times are GMT. The time now is 02:11 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.01041 seconds
  • Memory Usage 1,726KB
  • 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_code_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (6)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