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

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
  #12  
Old 08-31-2005, 08:32 PM
Bacon Butty Bacon Butty is offline
 
Join Date: Jun 2005
Posts: 309
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Nordinho
nice one...btw your VBadvanced newstemplate is messed up...
Was that aimed at me? :ermm:
Reply With Quote
  #13  
Old 09-01-2005, 01:42 AM
Snort_2005 Snort_2005 is offline
 
Join Date: May 2005
Posts: 117
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Bacon Butty
Was that aimed at me? :ermm:
No.. It was aimed at me. His screenshot had my default skin in it. It was also because of the rounded png quotes I had on there. <_<
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 09:45 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.03890 seconds
  • Memory Usage 2,219KB
  • Queries Executed 17 (?)
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
  • (2)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
  • (3)post_thanks_box
  • (3)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (3)post_thanks_postbit_info
  • (2)postbit
  • (3)postbit_onlinestatus
  • (3)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