Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.7 > vBulletin 3.7 Template Modifications

Reply
 
Thread Tools
Forgot Password & Join Us in Navbar Details »»
Forgot Password & Join Us in Navbar
Version: 1.1, by shlomot shlomot is offline
Developer Last Online: Nov 2013 Show Printable Version Email this Page

Category: End-User Options - Version: 3.7.x Rating:
Released: 05-03-2008 Last Update: 06-09-2008 Installs: 108
Template Edits
Re-useable Code Translations  
No support by the author.

No changes are needed for 3.8.x
Go here for the 3.8.x MOD

Even in this little community, we are getting around three request each week from members to send them their forgotten password.

Without questioning too much why hasn't the second-to-none vBulletin provide so far the extra "Forgot Password?" link in NavBar, here's a simple template edit to provide better accessibility to the Forgot Password page:

In this new version 1.1, we've also added a Join Us link on the same line thanks to gbechtel's great suggestion.


Instructions for fresh install:

Search for the following script in navbar template:
Code:
<td><input type="submit" class="button" value="$vbphrase[log_in]" tabindex="104" title="$vbphrase[enter_username_to_login_or_register]" accesskey="s" /></td>
		</tr>

and enter below the following code:
Code:
                <!-- Forgot Password Line Starts -->
                <tr>
                  <td colspan="2">
                    <a style="font-size:8pt; color: red;" href="login.php?do=lostpw">Forgot Password?</a>
                  </td>
                  <td style="text-align: right;">
                    <a style="font-size:8pt; color: red;" href="register.php">Join Us!</a>
                  </td>
                </tr>
                <!-- Forgot Password Line Ends -->

You can replace the color expression "color: red;" to any other color that you like. Here's a nice html color table.

You may also like to set another font size in the expression "font-size:8pt;" to: font-size:9pt;, font-size:10pt; etc.

Instructions for upgrade from previous version:

Search for the following script in navbar template:
Code:
<!-- Forgot Password Line Starts -->

and replace everything from the start tag to the end with:
Code:
                <!-- Forgot Password Line Starts -->
                <tr>
                  <td colspan="2">
                    <a style="font-size:8pt; color: red;" href="login.php?do=lostpw">Forgot Password?</a>
                  </td>
                  <td style="text-align: right;">
                    <a style="font-size:8pt; color: red;" href="register.php">Join Us!</a>
                  </td>
                </tr>
                <!-- Forgot Password Line Ends -->

That's all there is to it folks

Please do not forget to rate, mark installed, or even nominate (not for this elementary mode but for filling in on an importent issue)

Demo: Top Synergy Connections

Forgot Password in Other Languages:

Supporters / CoAuthors

Show Your Support

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

Comments
  #2  
Old 05-04-2008, 11:19 AM
Blackheart_72 Blackheart_72 is offline
 
Join Date: Dec 2007
Location: UK
Posts: 137
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks.
Reply With Quote
  #3  
Old 05-04-2008, 11:59 AM
shlomot's Avatar
shlomot shlomot is offline
 
Join Date: Apr 2007
Location: Haifa, Israel
Posts: 246
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You're welcome.

P.S. You may like to fix the URL in your signature line. Nice forum though

Quote:
Originally Posted by Veccy 150 View Post
Thanks.
Reply With Quote
  #4  
Old 05-04-2008, 01:07 PM
Blackheart_72 Blackheart_72 is offline
 
Join Date: Dec 2007
Location: UK
Posts: 137
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by shlomot View Post
You're welcome.

P.S. You may like to fix the URL in your signature line. Nice forum though
Cheers, always forget to put the " at the end.
Reply With Quote
  #5  
Old 05-05-2008, 02:54 PM
obmob obmob is offline
 
Join Date: Nov 2001
Posts: 580
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Cool... I was thinking about this some days ago, thanks!
Reply With Quote
  #6  
Old 05-05-2008, 04:18 PM
whitetigergrowl whitetigergrowl is offline
 
Join Date: Jun 2004
Posts: 243
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Simple yet effective. Thanks!
Reply With Quote
  #7  
Old 05-12-2008, 02:34 PM
gbechtel gbechtel is offline
 
Join Date: Aug 2005
Posts: 75
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Great idea. just made a little addition to mine

Added <a style="font-size:8pt; color: red;" href="register.php">Sign Up!</a>

Code:
<!-- Forgot Password Line Starts -->
                <tr>
                  <td colspan="2">
                  <a style="font-size:8pt; color: red;" href="login.php?do=lostpw">Forgot Password?</a> | <a style="font-size:8pt; color: red;" href="register.php">Sign Up!</a>
                  <td>
                </tr>
<!-- Forgot Password Line Ends -->
Demo: http://www.masscops.com/forums/index.php
Reply With Quote
  #8  
Old 05-13-2008, 03:26 AM
shlomot's Avatar
shlomot shlomot is offline
 
Join Date: Apr 2007
Location: Haifa, Israel
Posts: 246
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

What a great idea. Would you like me to add it to the MOD, with full creadit to you of course?

I'll definitely embed it in my template.

Quote:
Originally Posted by gbechtel View Post
Great idea. just made a little addition to mine

Added <a style="font-size:8pt; color: red;" href="register.php">Sign Up!</a>

Code:
<!-- Forgot Password Line Starts -->
                <tr>
                  <td colspan="2">
                  <a style="font-size:8pt; color: red;" href="login.php?do=lostpw">Forgot Password?</a> | <a style="font-size:8pt; color: red;" href="register.php">Sign Up!</a>
                  <td>
                </tr>
<!-- Forgot Password Line Ends -->
Demo: http://www.masscops.com/forums/index.php
Reply With Quote
  #9  
Old 05-13-2008, 07:50 AM
Boofo's Avatar
Boofo Boofo is offline
 
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

How about a text file with the instructions?
Reply With Quote
  #10  
Old 05-19-2008, 07:48 AM
Hornstar Hornstar is offline
 
Join Date: Jun 2005
Location: Australia
Posts: 2,469
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks, ive been meaning to do this again for a while.
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 11:20 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.05896 seconds
  • Memory Usage 2,304KB
  • Queries Executed 24 (?)
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_code
  • (3)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
  • (2)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (9)postbit
  • (10)postbit_onlinestatus
  • (10)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