Thread: Forum Home Enhancements - Today's Top Poster(s) on Forum Home
View Single Post
  #172  
Old 01-17-2010, 08:41 PM
TFEX TFEX is offline
 
Join Date: May 2008
Posts: 83
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Go to plugin manager, find "Product: Today's Top Poster's"
Edit "Today's Top Posters" plugin

Replace entire PHP code with this:

Code:
if ($show['todays_top_poster']) {
  $todays_top_posters = '';
  $limit = $vbulletin->options['todays_top_posters_limit'];
  $exclude_usergroups = $vbulletin->options['todays_top_posters_usergroups'];
  $exclude_users = $vbulletin->options['todays_top_posters_users'];
  $exclude_forums = $vbulletin->options['todays_top_posters_exclude_private_forums'];
  if ($vbulletin->options['24_hours_top_posters']) {
    $top_posters_title = $vbphrase['24_hours_top_posters'];
    $dateline = TIMENOW - 86400;
  } else {
    $top_posters_title = $vbphrase['todays_top_posters']; 
    $currenttime  = date('YmdHis',TIMENOW - intval($vbulletin->options['hourdiff']));  
    $dateline = TIMENOW - (substr($currenttime, 8, 2) * 3600 + substr($currenttime, 10, 2) * 60 + substr($currenttime, 12, 2));  
  }
  unset ($todays_top_posters);
  $top_posters = $vbulletin->db->query_read_slave(" 
    SELECT COUNT(post.dateline) AS postcount, post.userid, user.userid, post.threadid, thread.threadid,
    user.username, user.lastpost, user.lastpostid, user.posts, user.usergroupid, thread.forumid,
    IF(displaygroupid=0, usergroupid, displaygroupid) AS displaygroupid 
    FROM " . TABLE_PREFIX . "post AS post 
    LEFT JOIN " . TABLE_PREFIX . "user AS user ON (post.userid = user.userid) 
    RIGHT JOIN " . TABLE_PREFIX . "thread AS thread ON (post.threadid = thread.threadid) 
    " . iif(!empty($exclude_usergroups), "AND user.usergroupid NOT IN ($exclude_usergroups)") . " 
    " . iif(!empty($exclude_users), "AND user.userid NOT IN ($exclude_users)") . " 
    " . iif(!empty($exclude_forums), "AND thread.forumid NOT IN($exclude_forums)") . " 
    WHERE post.dateline > $dateline AND user.posts != '0' 
    GROUP BY post.userid  
    ORDER BY postcount DESC
    LIMIT 0, $limit"); 

  while($top_poster = $db->fetch_array($top_posters)){ 
    $top_poster[musername] = fetch_musername($top_poster); 
    $show['comma_leader'] = ($todays_top_posters != ''); 
    eval('$todays_top_posters .= "' . fetch_template('todays_top_poster_bit') . '";'); 
  } 
  eval ('$template_hook[forumhome_wgo_pos2] .= "' . fetch_template ('todays_top_poster') . '";'); 
  $db->free_result($top_posters); 
}
Your "exclude forums" field in "vbulletin options -> Today's Top Poster" will now function properly.
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01674 seconds
  • Memory Usage 1,770KB
  • 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
  • (1)bbcode_code
  • (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