The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
![]() |
|||||||||||||||||||||||||||||||||||||
-==(( Version 3.00 Boofo Edition
![]() Special Thanks For Boofo Who Edit The Most Of Code And Developed It :up::up: Boofo Screenshot For v3.00 -==(( Install ))==- Import The Product ![]() Then Open Template (( Additional.Css )) And Add This Code PHP Code:
You Should Install This Mod By Boofo https://vborg.vbsupport.ru/showthread.php?t=243363 This Version Does Not Contain Panel Coz All Links Is Important If You Want To Use Panel To Disable Some Features You Can Go To Version 2.00 ![]() ================================================ -==(( Version 2.00 ))==- Its Ok Now And Tested Tested On vBulletin 4.1.2 And Works Perfect ![]() New Features :- - Added New Options My Blog My Subscriptions Blog Lists Edit Email And Password - Arranged The Links By Its Genre - Added Admin Panel To Disable Or Enable Any Features You Want Screenshot Admin Panel -==(( Install ))==- Just Upload The Product And Navigate To vBulletin Setting --> Zero Important Links ![]() Enable What You Need -==(( Upgrade ))==- Upload The Product And Overwrite The Old One And You Are Fine ![]() Plz Click Install If You Install If You Have Any Suggestion Or Any Problem Dont Wait And Ask Me ![]() ================================================ -==(( Version 1.00 ))==- (( Removed )) Hello Everyone This Is My First Product I Hope You Enjoy It It Show Some Important Link In Navbar As A Shortcut For Users Info :- Its Add 1 Template 4 Phrases 2 Plugin Example Install Just Import Product From Admincp And Its Done ![]() Plz Click (( Install )) To Support You In The Future And If You Have Any Suggestion I Will Be Happy To Do It In The Next Releases Download Now
Screenshots
Show Your Support
|
Comments |
#52
|
||||
|
||||
![]()
Look in the navbar template.
|
#53
|
||||
|
||||
![]()
Btw - I found that I wanted to alter the position of where the Important links is inserted into the navbar - "easy peasy" with the hook location change to navbar_end versus navbar_after_calendar in the plugin
![]() Thx to Boofo for telling me to wake up and post in the correct thread) |
#54
|
||||
|
||||
![]() Quote:
Boofo Edited It To Show In Navbar_After_Calender ![]() |
#55
|
||||
|
||||
![]()
okay re-installed version 2 again and all working 100% thanks for this great simple mod
|
#56
|
||||
|
||||
![]() Quote:
![]() And they have promised to have me tarred and feathered and possibly even keelhauled if I don't keep the same functionality in the VB 4 flavor. ![]() Cheers |
#57
|
||||
|
||||
![]()
Nice idea. Thank you
![]() |
#58
|
|||
|
|||
![]()
I Google`d and did a search, but could only find the code for vBulletin 3. I'm using vBulletin 4 and while I think I found something similar, I'm not sure what to remove.
Any help would be very grateful |
#59
|
||||
|
||||
![]()
The way I do it if I don't know for sure where something is:
I look for the phrase first (Quick Links). Then I do a search in the phrases for Quick Links and find what the phrase name is. Then I do a search in the templates for that phrase name and voila! ![]() Then just wrap it in a conditional for what you want. |
#60
|
|||
|
|||
![]() Quote:
Code:
<a href="javascript://" class="popupctrl" accesskey="3">{vb:rawphrase quick_links}</a> |
#61
|
||||
|
||||
![]() Quote:
In the navbar template Replace this: Code:
<li class="popupmenu"> <a href="javascript://" class="popupctrl" accesskey="3">{vb:rawphrase quick_links}</a> <ul class="popupbody popuphover"> <vb:if condition="$show['member']"> <li><a href="subscription.php{vb:raw session.sessionurl_q}" rel="nofollow">{vb:rawphrase subscribed_threads}</a></li> <li><a href="javascript://" onclick="window.open(getBaseUrl() + 'misc.php?{vb:raw session.sessionurl}do=buddylist&focus=1','buddylist','statusbar=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,width=250,height=300'); return false;">{vb:rawphrase open_contacts}</a></li> </vb:if> <vb:if condition="$vboptions['forumleaders']"> <li><a href="showgroups.php{vb:raw session.sessionurl_q}" rel="nofollow"> <vb:if condition="$vb_suite_installed"> {vb:rawphrase view_site_leaders} <vb:else /> {vb:rawphrase view_forum_leaders} </vb:if> </a></li> </vb:if> {vb:raw template_hook.navbar_quick_links_menu_pos1} {vb:raw template_hook.navbar_quick_links_menu_pos2} {vb:raw template_hook.navbar_quick_links_menu_pos3} <vb:if condition="$show['wollink']"> <li><a href="online.php{vb:raw session.sessionurl_q}">{vb:rawphrase whos_online}</a></li> </vb:if> {vb:raw template_hook.navbar_quick_links_menu_pos4} </ul> </li> with this: Code:
<vb:comment> <li class="popupmenu"> <a href="javascript://" class="popupctrl" accesskey="3">{vb:rawphrase quick_links}</a> <ul class="popupbody popuphover"> <vb:if condition="$show['member']"> <li><a href="subscription.php{vb:raw session.sessionurl_q}" rel="nofollow">{vb:rawphrase subscribed_threads}</a></li> <li><a href="javascript://" onclick="window.open(getBaseUrl() + 'misc.php?{vb:raw session.sessionurl}do=buddylist&focus=1','buddylist','statusbar=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,width=250,height=300'); return false;">{vb:rawphrase open_contacts}</a></li> </vb:if> <vb:if condition="$vboptions['forumleaders']"> <li><a href="showgroups.php{vb:raw session.sessionurl_q}" rel="nofollow"> <vb:if condition="$vb_suite_installed"> {vb:rawphrase view_site_leaders} <vb:else /> {vb:rawphrase view_forum_leaders} </vb:if> </a></li> </vb:if> {vb:raw template_hook.navbar_quick_links_menu_pos1} {vb:raw template_hook.navbar_quick_links_menu_pos2} {vb:raw template_hook.navbar_quick_links_menu_pos3} <vb:if condition="$show['wollink']"> <li><a href="online.php{vb:raw session.sessionurl_q}">{vb:rawphrase whos_online}</a></li> </vb:if> {vb:raw template_hook.navbar_quick_links_menu_pos4} </ul> </li> </vb:comment> Notice what I highlighted in red. Wrapping it in comment tags will comment it all out but yet leave it there in case you ever want it in the future. |
![]() |
Thread Tools | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|