View Single Post
  #22  
Old 12-28-2004, 08:12 AM
Spinball's Avatar
Spinball Spinball is offline
 
Join Date: Feb 2002
Location: Telford, England
Posts: 705
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have used my hack to display banners above and below threads.
Edit showthread.php and find
*********************************************
// ################################################## ###########################
// output page
eval('print_output("' . fetch_template('SHOWTHREAD') . '");');
*********************************************
and add this code before it:
*********************************************
$headerbanner = "<P ALIGN=\"CENTER\" CLASS=\"smallfont\">" . file_get_contents("http://www.url_of_your_script.php?forumid=$forumid&type=h eader") . "</P>";
$footerbanner = "<P ALIGN=\"CENTER\" CLASS=\"smallfont\">" . file_get_contents("http://www.url_of_your_script.php?forumid=$forumid&type=f ooter") . "</P>";
*********************************************
Then in the SHOWTHREAD template, find
*********************************************
$navbar
*********************************************
and after it, put
*********************************************
<if condition="$headerbanner">$headerbanner</if>
*********************************************
and find
*********************************************
<if condition="$bbuserinfo[field11] == 'Yes'">$quickreply</if>
*********************************************
and above it add
*********************************************
<if condition="$footerbanner">$footerbanner</if>
*********************************************

Then write your php script to output banners depending on what forumid is passed and whether it's the header or footer:

PHP Code:
$forumid $_REQUEST['forumid'];
$type $_REQUEST['type'];

switch (
$forumid) {
 case 
36:                                 // for your forum number 36 only...
   
if ($type == "header") {
      
$banners = array (
      
"banner_1.gif|banner_1.pl|The alt text|0|468|60",
      
"banner_2.gif|banner_2.pl|The alt text|0|468|60"
      
);
   } elseif (
$type == "footer") {
      
$banners = array (
      
"banner_3.gif|banner_3.pl|The alt text|0|468|60",
      
"banner_4.gif|banner_4.pl|The alt text|0|468|60"
      
);
   }
   break;
 case 
37:                                 // for your forum number 37 only...
   
if ($type == "header") {
      
$banners = array (
      
"banner_5.gif|banner_5.pl|The alt text|0|468|60",
      
"banner_6.gif|banner_6.pl|The alt text|0|468|60"
      
);
   } elseif (
$type == "footer") {
      
$banners = array (
      
"banner_7.gif|banner_7.pl|The alt text|0|468|60",
      
"banner_8.gif|banner_8.pl|The alt text|0|468|60"
      
);
   }
   break;
}
$banner $banners[mt_rand(0,sizeof($banners) - 1)];
list(
$imgsrc,$myurl,$alttext,$border,$width,$height) = explode ('|',$banner);
echo (
"<A HREF='http://www.your_domain.com/cgi-bin/$myurl' TARGET='_blank'><IMG src='http://www.your_domain/path_to_your/banners/$imgsrc?" mt_rand(1,9999) . "' border='$border' width='$width' height='$height' alt='$alttext'></A>"); 
I'm actually working on a complete vBulletin banner solution which enables you to display (rotating) banners above the forum list and also above and below every thread (and anywhere else you want). But it's work-in-progress.

Re your specific code request, I recommend you learn some PHP.
PHP Code:
if ($forumid==76 or $forumid==78 or $forumid==81
or if you have lots of forums, use the 'switch' command as per my example above.

Re displaying banners for whole categories, you might be able to do it, but I don't have time to look into it this year
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01244 seconds
  • Memory Usage 1,797KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_php
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete