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

Reply
 
Thread Tools
"Quick Links" Menu in three columns Details »»
"Quick Links" Menu in three columns
Version: 1.00, by Snort_2005 Snort_2005 is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Version: 3.5.0 RC2 Rating:
Released: 08-28-2005 Last Update: 08-29-2005 Installs: 6
Template Edits
 
No support by the author.

This is my first time ever releasing something like this so don't byte.

Ever got annoyed how the quick links menu was a tad tall? (those of you with the lower resolutions.) I have devised a solution.

Installation:

  1. Login to your Admin Control panel and open the style manager.
  2. Edit the templates of the style you wish to apply this to.
  3. Double-click Navigation / Breadcrumb Templates to expand it.
  4. Double-click the template bit "navbar".
  5. Find
    Code:
    	<!-- user cp tools menu -->
     
    	<div class="vbmenu_popup" id="usercptools_menu" style="display:none">
     
    		<table cellpadding="4" cellspacing="1" border="0">
     
    		
     
    		<tr><td class="thead">$vbphrase[quick_links]</td></tr> 	 
     
    		<if condition="$vboptions['enablesearches']"><tr><td class="vbmenu_option"><a href="search.php?$session[sessionurl]do=getdaily">$vbphrase[todays_posts]</a></td></tr></if>
     
    		<tr><td class="vbmenu_option"><a href="forumdisplay.php?$session[sessionurl]do=markread">$vbphrase[mark_forums_read]</a></td></tr>
     
    		<tr><td class="vbmenu_option"><a href="#" onclick="window.open('misc.php?$session[sessionurl]do=buddylist&amp;focus=1','buddylist','statusbar=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,width=250,height=300'); return false;">$vbphrase[open_buddy_list]</a></td></tr>
     
    				
     
    		<tr><td class="thead"><a href="usercp.php$session[sessionurl_q]">$vbphrase[user_control_panel]</a></td></tr>
     
    		<if condition="$show['siglink']"><tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editsignature">$vbphrase[edit_signature]</a></td></tr></if>
     
    		<if condition="$show['avatarlink']"><tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editavatar">$vbphrase[edit_avatar]</a></td></tr></if>
     
    		<tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editprofile">$vbphrase[edit_profile]</a></td></tr>
     
    		<tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editoptions">$vbphrase[edit_options]</a></td></tr>
     
    		
     
    		<tr><td class="thead">$vbphrase[miscellaneous]</td></tr>
     
    		<if condition="$show['pmstats']"><tr><td class="vbmenu_option"><a href="private.php$session[sessionurl_q]">$vbphrase[private_messages]</a></td></tr></if>
     
    		<tr><td class="vbmenu_option"><a href="subscription.php$session[sessionurl_q]">$vbphrase[subscribed_threads]</a></td></tr>
     
    		<tr><td class="vbmenu_option"><a href="member.php?$session[sessionurl]u=$bbuserinfo[userid]">$vbphrase[my_profile]</a></td></tr>
     
    		<if condition="$show['wollink']"><tr><td class="vbmenu_option"><a href="online.php$session[sessionurl_q]">$vbphrase[whos_online]</a></td></tr></if>
     
    		
     
    		</table>
     
    	</div>
     
    	<!-- / user cp tools menu -->
  6. Replace with:
    Code:
        <!-- user cp tools menu -->
     
    	<div class="vbmenu_popup" id="usercptools_menu" style="display:none">
     
    		<table cellpadding="4" cellspacing="1" border="0">
     
    		<tr>
     
    			<td class="thead">
     
    				$vbphrase[quick_links]
     
    			</td>
     
    			<td class="thead">
     
    		 	<a href="usercp.php?$session[sessionurl]">$vbphrase[user_control_panel]</a>
     
    			</td>
     
    			<td class="thead">
     
    				$vbphrase[miscellaneous]
     
    			</td>
     
    		</tr>
     
    		<tr>
     
    			<if condition="$vboptions['enablesearches']">
     
    			<td class="vbmenu_option">
     
    		 	<a href="search.php?$session[sessionurl]do=getnew">$vbphrase[new_posts_nav]</a>
     
    			</td>
     
    			<else />
     
    			<td class="vbmenu_option">
     
    				&nbsp;
     
    			</td>
     
    			</if>
     
    			<if condition="$show['siglink']">
     
    			<td class="vbmenu_option">
     
    		 	<a href="profile.php?$session[sessionurl]do=editsignature">$vbphrase[edit_signature]</a>
     
    			</td>
     
    			<else />
     
    			<td class="vbmenu_option">
     
    				&nbsp;
     
    			</td>
     
    			</if>
     
    			<if condition="$show['pmstats']">
     
    			<td class="vbmenu_option">
     
    		 	<a href="private.php?$session[sessionurl]">$vbphrase[private_messages]</a>
     
    			</td>
     
    			<else />
     
    			<td class="vbmenu_option">
     
    				&nbsp;
     
    			</td>
     
    			</if>
     
    		</tr>
     
    		<tr>
     
    			<td class="vbmenu_option">
     
    		 	<a href="forumdisplay.php?$session[sessionurl]do=markread">$vbphrase[mark_forums_read]</a>
     
    			</td>
     
    			<if condition="$show['avatarlink']">
     
    			<td class="vbmenu_option">
     
    		 	<a href="profile.php?$session[sessionurl]do=editavatar">$vbphrase[edit_avatar]</a>
     
    			</td>
     
    			<else />
     
    			<td class="vbmenu_option">
     
    				&nbsp;
     
    			</td>
     
    			</if>
     
    			<td class="vbmenu_option">
     
    		 	<a href="subscription.php?$session[sessionurl]">$vbphrase[subscribed_threads]</a>
     
    			</td>
     
    		</tr>
     
    		<tr>
     
    			<td class="vbmenu_option">
     
    		 	<a href="#" onclick="window.open('misc.php?$session[sessionurl]do=buddylist&amp;focus=1','buddylist','statusbar=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,width=250,height=300'); return false;">$vbphrase[open_buddy_list]</a>
     
    			</td>
     
    			<td class="vbmenu_option">
     
    		 	<a href="profile.php?$session[sessionurl]do=editprofile">$vbphrase[edit_profile]</a>
     
    			</td>
     
    			<td class="vbmenu_option">
     
    		 	<a href="member.php?$session[sessionurl]u=$bbuserinfo[userid]">$vbphrase[my_profile]</a>
     
    			</td>
     
    		</tr>
     
    		<tr>
     
    			<td class="vbmenu_option">
     
    				&nbsp;
     
    			</td>
     
    			<td class="vbmenu_option">
     
    		 	<a href="profile.php?$session[sessionurl]do=editoptions">$vbphrase[edit_options]</a>
     
    			</td>
     
    			<if condition="$show['wollink']">
     
    			<td class="vbmenu_option">
     
    		 	<a href="online.php?$session[sessionurl]">$vbphrase[whos_online]</a>
     
    			</td>
     
    			<else />
     
    			<td class="vbmenu_option">
     
    				&nbsp;
     
    			</td>
     
    			</if>
     
    		</tr>
     
    		</table>
     
    	</div>
     
    	<!-- / user cp tools menu -->
  7. Repeat for other styles.
Enjoy!


EDIT: Included installation instructions as a .txt file.

Show Your Support

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

Comments
  #2  
Old 08-29-2005, 04:09 PM
Snort_2005 Snort_2005 is offline
 
Join Date: May 2005
Posts: 117
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Oh.. forgot to add. This will also work well on vB 3.0.X series as well.

Live Demo: http://www.zcworld.net/
Reply With Quote
  #3  
Old 08-29-2005, 05:10 PM
KuRi KuRi is offline
 
Join Date: Jan 2005
Posts: 128
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

very good, allthough I wont be using this as i have moved the user control panel links to a usercp drop menu... Still a good idea, keep em coming
Reply With Quote
  #4  
Old 08-29-2005, 07:32 PM
Bacon Butty Bacon Butty is offline
 
Join Date: Jun 2005
Posts: 309
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nice little modification. Just added it to my site, thanks!
Reply With Quote
  #5  
Old 08-29-2005, 07:35 PM
Nordinho Nordinho is offline
 
Join Date: Aug 2004
Location: Netherlands
Posts: 288
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Bacon Butty
Nice little modification. Just added it to my site, thanks!
nice one...btw your VBadvanced newstemplate is messed up...
Reply With Quote
  #6  
Old 08-29-2005, 09:41 PM
Snort_2005 Snort_2005 is offline
 
Join Date: May 2005
Posts: 117
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

the custom quote box got cut off. X_X OMG.. Must fix. o.o

EDIT: Thanks.. I bumped thread disply cutoff to unlimited characters to show the full post.
Reply With Quote
  #7  
Old 08-29-2005, 10:38 PM
Scooterpig Scooterpig is offline
 
Join Date: Feb 2005
Posts: 247
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Snort_2005
the custom quote box got cut off. X_X OMG.. Must fix. o.o

EDIT: Thanks.. I bumped thread disply cutoff to unlimited characters to show the full post.
Very neat, cool..thank you.....ya might just wanna add it to a .txt file & attach in 1st post for download so people can save it..
Reply With Quote
  #8  
Old 08-30-2005, 12:12 AM
Snort_2005 Snort_2005 is offline
 
Join Date: May 2005
Posts: 117
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Intrepid
Very neat, cool..thank you.....ya might just wanna add it to a .txt file & attach in 1st post for download so people can save it..
Good idea.. and Done.
Reply With Quote
  #9  
Old 08-30-2005, 10:58 PM
Floris Floris is offline
 
Join Date: Jan 2002
Posts: 1,898
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Snort_2005
Oh.. forgot to add. This will also work well on vB 3.0.X series as well.

Live Demo: http://www.zcworld.net/
Do you have a test account?
Reply With Quote
  #10  
Old 08-31-2005, 10:13 AM
Snort_2005 Snort_2005 is offline
 
Join Date: May 2005
Posts: 117
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by floris
Do you have a test account?
... >_<

Username: Testor Dudzor
Password: test
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 04:54 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.04394 seconds
  • Memory Usage 2,306KB
  • Queries Executed 23 (?)
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
  • (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
  • (1)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