Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Add-ons

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
  #92  
Old 01-05-2010, 05:24 PM
fogjuice fogjuice is offline
 
Join Date: May 2009
Location: Toronto, Canada
Posts: 56
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by movslow View Post
ArbStar, what would it take for the mod to fit in the requirements I posted about above?
Yes, I'm curious too. I'm willing to maybe donate $5-7 USD over paypal to have this done (sry I would donate more but I'm broke).
Reply With Quote
  #93  
Old 01-05-2010, 05:39 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 movslow View Post
ArbStar, what would it take for the mod to fit in the requirements I posted about above?
i'll work on it tomorrow morning
Reply With Quote
  #94  
Old 01-05-2010, 06:23 PM
movslow movslow is offline
 
Join Date: Aug 2008
Posts: 297
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ArbStar View Post
i'll work on it tomorrow morning
Dude you rock !!
:up:
Reply With Quote
  #95  
Old 01-06-2010, 09:09 AM
ArbStar's Avatar
ArbStar ArbStar is offline
 
Join Date: Jan 2007
Location: Toronto, ON
Posts: 58
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ArbStar View Post
i'll work on it tomorrow morning
I'm done, please try the attached XML file and tell me if it works fine.
Attached Files
File Type: xml lateststatistics_Navbar.xml (7.3 KB, 35 views)
Reply With Quote
  #96  
Old 01-06-2010, 09:52 AM
phonexpo phonexpo is offline
 
Join Date: Sep 2005
Location: Dublin
Posts: 231
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks Arb.

Just a few issues though, there's a "<" on the top left of the Latest Statistics box. Also is it possible to use the v4.0 images for the Collapse/Expand buttons?

/images/buttons/collapse_40b.png etc

BR's

-Patrick
Reply With Quote
  #97  
Old 01-06-2010, 10:05 AM
ArbStar's Avatar
ArbStar ArbStar is offline
 
Join Date: Jan 2007
Location: Toronto, ON
Posts: 58
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by phonexpo View Post
Thanks Arb.

Just a few issues though, there's a "<" on the top left of the Latest Statistics box. Also is it possible to use the v4.0 images for the Collapse/Expand buttons?

/images/buttons/collapse_40b.png etc

BR's

-Patrick
Removed the ( < ) & Replaced the image link

check the updated attachemnt
Reply With Quote
  #98  
Old 01-06-2010, 10:50 AM
phonexpo phonexpo is offline
 
Join Date: Sep 2005
Location: Dublin
Posts: 231
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Excellent

I change this line of the code;

Code:
  $latest_posts .= '<tr><td>'.$count.'</td><td><a href="showthread.php?t='.$post['threadid'].'&amp;goto=newpost#'.$post['lastpostid'].'">'.substr($post['title'],0,30).'...</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>';
to;

Code:
  $latest_posts .= '<tr><td>'.$count.'</td><td><a href="showthread.php?t='.$post['threadid'].'&amp;goto=newpost#'.$post['lastpostid'].'">'.substr($post['title'],0,100).'...</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>';
It increases the 30 character limit.

Thanks again,

-Patrick
Reply With Quote
  #99  
Old 01-06-2010, 11:05 AM
Skyrider Skyrider is offline
 
Join Date: Feb 2006
Location: Netherlands
Posts: 1,392
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

removed... again! It still shows thread title names within hidden sections to the public!
Reply With Quote
  #100  
Old 01-06-2010, 11:14 AM
phonexpo phonexpo is offline
 
Join Date: Sep 2005
Location: Dublin
Posts: 231
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by FF|Skyrider View Post
removed... again! It still shows thread title names within hidden sections to the public!
Well it's working perfect for me. Are you sure you have the settings correct?

Example - http://i46.tinypic.com/2w723cw.jpg

BR's

-Patrick
Reply With Quote
  #101  
Old 01-06-2010, 11:41 AM
Skyrider Skyrider is offline
 
Join Date: Feb 2006
Location: Netherlands
Posts: 1,392
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by phonexpo View Post
Well it's working perfect for me. Are you sure you have the settings correct?

Example - http://i46.tinypic.com/2w723cw.jpg

BR's

-Patrick
I'd like to have the sections (private) included on the list, but not visible to those who don't have access to the section.
Reply With Quote
Reply

Thread Tools

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 08:48 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.05066 seconds
  • Memory Usage 2,338KB
  • Queries Executed 29 (?)
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
  • (2)bbcode_code
  • (7)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
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (3)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_postinfo_query
  • fetch_postinfo
  • 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