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

Reply
 
Thread Tools
New Members Page Details »»
New Members Page
Version: 1.0.2, by Eric Eric is offline
Developer Last Online: Jun 2023 Show Printable Version Email this Page

Version: 3.5.5 Rating:
Released: 08-06-2006 Last Update: 08-09-2006 Installs: 12
Uses Plugins Template Edits
Additional Files  
No support by the author.

New Members Page

Updated to 1.0.2

This modification will produce a New Members page listing the username, avatar, and profile pic of the latest users sorted by joindate. The amount listed is based on an admin configurable limit. If the user has no avatar or profile pic, a default one is used.

Made by request: https://vborg.vbsupport.ru/showthread.php?t=122676

Installation
  • Import the product 'product-newmemberspage.xml'.
  • Upload newmembers.php to your forum root. Upload noavatar.gif and noprofilepic.gif to images/misc/. If you want to use your own remember that you will have to go into the admincp and give it's filename + size.
  • Options can be set in AdminCP -> vBulletin Options -> New Members Page

That's it your done.. aside from linking to the newmembers page. Here's an example of adding it to the navbar:

Open the 'navbar' template.

FIND
HTML Code:
<td class="vbmenu_control"><a href="calendar.php$session[sessionurl_q]">$vbphrase[calendar]</a></td>
AFTER, ADD
HTML Code:
<td class="vbmenu_control"><a href="newmembers.php$session[sessionurl_q]">$vbphrase[newmembers]</a></td>
Upgrading
  • Re-import the product 'product-newmemberspage.xml' with "Allow Overwrite" set to yes.
  • Re-upload & overwrite newmembers.php.

Changelog
  • 1.0.2 - Re-added the 'cutoff'. It is based on an admin set number of days.
  • 1.0.1 - Removed the time restriction: 'cutoff'. Cleaned up the newmembers_results template.

WOL & Joindate
If you want New Members Page on WOL and/or display joindate on the New Members Page, make the edits in the following posts:

https://vborg.vbsupport.ru/showpost....6&postcount=26
https://vborg.vbsupport.ru/showpost....7&postcount=29

Make sure you click INSTALL if you use this modification.

Enjoy!

Show Your Support

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

Comments
  #12  
Old 08-10-2006, 02:02 AM
Eric's Avatar
Eric Eric is offline
 
Join Date: May 2006
Location: Kentucky
Posts: 792
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by The Chief
Lookin good, you have multiple pages I hope?
Yes - still shown on multiple pages

Also, removed all that code from the template; and worked that out in newmembers.php
HTML Code:
<tr align="center">
    <td class="alt1Active" align="$stylevar[left]" id="u$newmembers[userid]"><a href="member.php?$session[sessionurl]u=$newmembers[userid]">$newmembers[username]</a></td>
    <if condition="exec_switch_bg()"><td class="$bgclass"><if condition="$avatarurl != '&nbsp;'"><img src="$avatarurl" border="0" $avwidth $avheight alt="<phrase 1="$newmembers[username]">$vbphrase[xs_avatar]</phrase>" hspace="4" vspace="4" /><else /><img src="$stylevar[imgdir_misc]/$vboptions[newmembers_defaultav]" width="$vboptions[newmembers_defaultavw]" height="$vboptions[newmembers_defaultavh]" border="0" alt="<phrase 1="$newmembers[username]">$vbphrase[xs_avatar]</phrase>" hspace="4" vspace="4" /></if></td></if>
	<if condition="exec_switch_bg()"><td class="$bgclass"><if condition="$newmembers[profilepic] != '&nbsp;'">$newmembers[profilepic]<else /><img src="$stylevar[imgdir_misc]/$vboptions[newmembers_defaultpic]" alt="" title="$newmembers[username]'s picture" width="$vboptions[newmembers_defaultpicw]" height="$vboptions[newmembers_defaultpich]" border="0" /></if></td></if>
</tr>
Down to
HTML Code:
<tr align="center">
	<td class="alt1Active" align="$stylevar[left]" id="u$newmembers[userid]"><a href="member.php?$session[sessionurl]u=$newmembers[userid]">$newmembers[username]</a></td>
	<if condition="exec_switch_bg()"><td class="$bgclass"><img src="$avatarurl" border="0" $avwidth $avheight alt="<phrase 1="$newmembers[username]">$vbphrase[xs_avatar]</phrase>" hspace="4" vspace="4" /></td></if>
	<if condition="exec_switch_bg()"><td class="$bgclass">$newmembers[profilepic]</td></if>
</tr>
So, that'll do it I guess Unless I can think of anything or you want something else.
Reply With Quote
  #13  
Old 08-10-2006, 02:39 AM
The Chief's Avatar
The Chief The Chief is offline
 
Join Date: Aug 2005
Location: Montreal
Posts: 1,037
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by SecondV
Yes - still shown on multiple pages

Also, removed all that code from the template; and worked that out in newmembers.php
HTML Code:
<tr align="center">
    <td class="alt1Active" align="$stylevar[left]" id="u$newmembers[userid]"><a href="member.php?$session[sessionurl]u=$newmembers[userid]">$newmembers[username]</a></td>
    <if condition="exec_switch_bg()"><td class="$bgclass"><if condition="$avatarurl != '&nbsp;'"><img src="$avatarurl" border="0" $avwidth $avheight alt="<phrase 1="$newmembers[username]">$vbphrase[xs_avatar]</phrase>" hspace="4" vspace="4" /><else /><img src="$stylevar[imgdir_misc]/$vboptions[newmembers_defaultav]" width="$vboptions[newmembers_defaultavw]" height="$vboptions[newmembers_defaultavh]" border="0" alt="<phrase 1="$newmembers[username]">$vbphrase[xs_avatar]</phrase>" hspace="4" vspace="4" /></if></td></if>
	<if condition="exec_switch_bg()"><td class="$bgclass"><if condition="$newmembers[profilepic] != '&nbsp;'">$newmembers[profilepic]<else /><img src="$stylevar[imgdir_misc]/$vboptions[newmembers_defaultpic]" alt="" title="$newmembers[username]'s picture" width="$vboptions[newmembers_defaultpicw]" height="$vboptions[newmembers_defaultpich]" border="0" /></if></td></if>
</tr>
Down to
HTML Code:
<tr align="center">
	<td class="alt1Active" align="$stylevar[left]" id="u$newmembers[userid]"><a href="member.php?$session[sessionurl]u=$newmembers[userid]">$newmembers[username]</a></td>
	<if condition="exec_switch_bg()"><td class="$bgclass"><img src="$avatarurl" border="0" $avwidth $avheight alt="<phrase 1="$newmembers[username]">$vbphrase[xs_avatar]</phrase>" hspace="4" vspace="4" /></td></if>
	<if condition="exec_switch_bg()"><td class="$bgclass">$newmembers[profilepic]</td></if>
</tr>
So, that'll do it I guess Unless I can think of anything or you want something else.
Well let me install the new version and test it out

Thanks much!

(is the new one uploaded?)
Reply With Quote
  #14  
Old 08-10-2006, 02:56 AM
Eric's Avatar
Eric Eric is offline
 
Join Date: May 2006
Location: Kentucky
Posts: 792
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by The Chief
Well let me install the new version and test it out

Thanks much!

(is the new one uploaded?)
Getting ready to
Reply With Quote
  #15  
Old 08-10-2006, 05:30 AM
hbalagh1's Avatar
hbalagh1 hbalagh1 is offline
 
Join Date: Jun 2005
Location: San Diego
Posts: 230
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Great job Eric....
Reply With Quote
  #16  
Old 08-10-2006, 05:55 AM
Eric's Avatar
Eric Eric is offline
 
Join Date: May 2006
Location: Kentucky
Posts: 792
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by hbalagh1
Great job Eric....
Thanks Heather
Reply With Quote
  #17  
Old 08-10-2006, 06:53 PM
The Chief's Avatar
The Chief The Chief is offline
 
Join Date: Aug 2005
Location: Montreal
Posts: 1,037
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Some few errors I would like to point out.

- First, in the admincp, you have wrote Default Avatar twice, when the other one should be called Default Profile Picture.

- Second, The New members page has 1700 pages, all until my account, can't it cut off after a certain number of days?

Thanks much!!

Charles
myetalk.com
Reply With Quote
  #18  
Old 08-10-2006, 08:23 PM
Eric's Avatar
Eric Eric is offline
 
Join Date: May 2006
Location: Kentucky
Posts: 792
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by The Chief
Some few errors I would like to point out.

- First, in the admincp, you have wrote Default Avatar twice, when the other one should be called Default Profile Picture.

- Second, The New members page has 1700 pages, all until my account, can't it cut off after a certain number of days?

Thanks much!!

Charles
myetalk.com
Eek..let me take a look into that
Reply With Quote
  #19  
Old 08-10-2006, 09:32 PM
Eric's Avatar
Eric Eric is offline
 
Join Date: May 2006
Location: Kentucky
Posts: 792
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Updated to 1.0.2
Reply With Quote
  #20  
Old 08-11-2006, 03:06 PM
Stifmeister2 Stifmeister2 is offline
 
Join Date: Feb 2006
Location: Finland
Posts: 755
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks dude!!!


*installs*
Reply With Quote
  #21  
Old 08-11-2006, 03:36 PM
Stifmeister2 Stifmeister2 is offline
 
Join Date: Feb 2006
Location: Finland
Posts: 755
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Suggestion: Could you add "Join date" also? After "User Name" for example.

Like
"User Name" | "Join Date" | "Avatar" | "Profile Picture"
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 08:22 PM.


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.06042 seconds
  • Memory Usage 2,341KB
  • Queries Executed 25 (?)
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
  • (6)bbcode_html
  • (5)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)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
  • (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_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete