Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Latest Posts and Newest Members on Forum Home Details »»
Latest Posts and Newest Members on Forum Home
Version: 1.02, by Punjabi Munda Punjabi Munda is offline
Developer Last Online: Feb 2012 Show Printable Version Email this Page

Category: Forum Home Enhancements - Version: 4.0.x Rating:
Released: 12-23-2009 Last Update: 02-03-2010 Installs: 162
Uses Plugins Auto-Templates
Re-useable Code Translations Is in Beta Stage  
No support by the author.

What it does: This mod displays the latest X Posts and Newest X Members on your forum home page

Live Demo: http://www.dilhaidesi.com/forum

Screenshots:
  1. http://i50.tinypic.com/2evc3gk.png
  2. http://i46.tinypic.com/2j61yjr.png

Download Now

File Type: xml lateststatistics.xml (6.3 KB, 948 views)
File Type: xml lateststatistics_Navbar.xml (7.3 KB, 362 views)

Supporters / CoAuthors

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #132  
Old 01-17-2010, 04:58 AM
Punjabi Munda Punjabi Munda is offline
 
Join Date: May 2007
Posts: 15
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i'm back from vacation. can any1 remind me the things that need to be done. i might not be able to read every single post.
Reply With Quote
  #133  
Old 01-17-2010, 09:32 AM
PinoyRepublic's Avatar
PinoyRepublic PinoyRepublic is offline
 
Join Date: Jun 2009
Posts: 15
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

can you include the username color?
Reply With Quote
  #134  
Old 01-18-2010, 04:53 PM
Sophocles Sophocles is offline
 
Join Date: Dec 2004
Posts: 9
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Works perfectly.
Reply With Quote
  #135  
Old 01-18-2010, 08:16 PM
bigtime bigtime is offline
 
Join Date: Jun 2002
Location: Houston, Texas
Posts: 171
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Can this be used to show latest posts on a custom page?
Reply With Quote
  #136  
Old 01-19-2010, 03:28 AM
zeroality zeroality is offline
 
Join Date: Jul 2006
Posts: 187
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Punjabi Munda View Post
i'm back from vacation. can any1 remind me the things that need to be done. i might not be able to read every single post.
I removed Newest Members but now I am faced with another issue. I would like to add the forum name in where the latest post is from - like an additional column with that data. This is how it was in Cyb's Forum Stats hack and I really liked it. I tried coding it myself but got a database error when I put it up live and I just don't know how to do it. All I really need is the code to insert - like:

Code:
	$latestposts = $vbulletin->db->query_read("SELECT * FROM " . TABLE_PREFIX . "thread WHERE visible=1 $excluded_forums_query ORDER BY lastpostid DESC LIMIT 0,".$howmany_latestposts);
	$latest_posts .= '<table width="100%"><tr><td width="60%">Latest Posts</td><td width="40%">Top Posters</td></tr><tr><td><table width="100%" border="0" cellspacing="3" cellpadding="3">';
	$count=1;
	while ($post = $vbulletin->db->fetch_array($latestposts))
	{
		$latest_posts .= '<tr><td><a href="showthread.php?t='.$post['threadid'].'&amp;goto=newpost#'.$post['lastpostid'].'">'.substr($post['title'],0,50).'...</a></td><td><a href="member.php?u='.$post['lastposterid'].'">'.$post['lastposter'].'</a></td><td><a href="showthread.php?t='.$post['threadid'].'"><img src="images/buttons/collapse_40b.png" alt="" /></a></td></tr>';
		$count++;
	}
	$latest_posts .= '</table>
	</td><td>
I know you need to query the forum table and get the forum[title] from there so all I need is a little code modification in what I pasted above. Many thanks!
Reply With Quote
  #137  
Old 01-19-2010, 10:06 AM
maf1973 maf1973 is offline
 
Join Date: Oct 2005
Location: Earth
Posts: 66
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by dtommy79 View Post
Yes, read back in this thread, there is an attachment
Where? I checked all attached files but i don't found one with that style?
Reply With Quote
  #138  
Old 01-19-2010, 04:01 PM
ArbStar's Avatar
ArbStar ArbStar is offline
 
Join Date: Jan 2007
Location: Toronto, ON
Posts: 58
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Punjabi Munda View Post
i'm back from vacation. can any1 remind me the things that need to be done. i might not be able to read every single post.
Search for my posts in this thread
Reply With Quote
  #139  
Old 01-19-2010, 05:08 PM
movslow movslow is offline
 
Join Date: Aug 2008
Posts: 297
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ArbStar View Post
Search for my posts in this thread
BIG THANKS to ArbStar for stepping up and helping everyone out!!
:up:
Reply With Quote
  #140  
Old 01-22-2010, 05:26 PM
zeroality zeroality is offline
 
Join Date: Jul 2006
Posts: 187
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Bumping, incase anybody else can help out? If not, I'll wait for the coders.
Reply With Quote
  #141  
Old 01-22-2010, 07:41 PM
ArbStar's Avatar
ArbStar ArbStar is offline
 
Join Date: Jan 2007
Location: Toronto, ON
Posts: 58
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by zeroality View Post
Bumping, incase anybody else can help out? If not, I'll wait for the coders.
help out with what ?

the developer is back from vacation, i think he will be able to help

I'm still waiting for his reply regarding my modifications....
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 03:34 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05261 seconds
  • Memory Usage 2,335KB
  • Queries Executed 27 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)bbcode_code
  • (5)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (2)postbit_attachment
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • 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_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete