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
Advanced Navbar (add navbars & links, display it anywhere) Details »»
Advanced Navbar (add navbars & links, display it anywhere)
Version: 1.0.2, by Developer Developer is offline
Developer Last Online: Nov 2010 Show Printable Version Email this Page

Version: 3.5.4 Rating:
Released: 05-15-2006 Last Update: 05-17-2006 Installs: 150
DB Changes Uses Plugins Template Edits
Additional Files  
No support by the author.

DevNavbar
v.1.0.2
Description::.
This hack will give you an ability to add infinite number of navbars & links
HUGE thnx to Hambil
And another big thnx to beebi
[Hack Features::.
1-easy yo install
2-infinite number of navbars
3-infinite number of links in the navbar
4-select link's target
5-select link's alternate text
many other things just test the hack or see sreenshots

[Planned Features::.
Many planned features to improve the hack
Installation::.
1-Import The Product.
2-upload files to thier destination directory
3-Read post number 2
History::.
1.0.0 On 17. May 2006 Initial Version.
1.0.1 On 17. May 2006 Fix Table prefix problem & remove some non working functions
1.0.2 On 18. May 2006 Now you can display each navbar any where

Hack Languages::.
English Only For Now
Details::.
1 plugin, 35 phrases, 0 option, 1 query per page, 2 files
Donation::.
Feel Free To
aT lAsT::.
If you've installed the hack click
vbulletin.org
if you realy like the hack nominate it for HOTM

Support Given For Who Clicked Install {ONLY}

Supporters / CoAuthors

Show Your Support

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

Comments
  #62  
Old 05-17-2006, 04:15 PM
JD45 JD45 is offline
 
Join Date: Feb 2006
Posts: 138
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Atakan KOC
Find advanced_navbar.php
Thanks for the fix, that took care of the sql error.

One last question. I know this isn't your hack and I do appreciate the fixes, but any idea why the usergroup permissions aren't working right still?
Reply With Quote
  #63  
Old 05-17-2006, 04:23 PM
bashy bashy is offline
 
Join Date: Nov 2005
Posts: 2,544
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi peeps

The navbars are not showing in IE7 but they show ok in Firefox
Please see www.bashys-place.com/forums you can see where the bar
is trying to show itself just below the original navbar...

Any advice please?
Reply With Quote
  #64  
Old 05-17-2006, 04:26 PM
JD45 JD45 is offline
 
Join Date: Feb 2006
Posts: 138
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I don't see them in FF or IE, I do see the space though. Did you upload all the files and do the template edit?
Reply With Quote
  #65  
Old 05-17-2006, 04:31 PM
bashy bashy is offline
 
Join Date: Nov 2005
Posts: 2,544
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi yeah did the edits and uploaded all files and imported the product,

Like i say, it works fine in Firefox, well for me anyway lol
Reply With Quote
  #66  
Old 05-17-2006, 05:44 PM
Atakan KOC's Avatar
Atakan KOC Atakan KOC is offline
 
Join Date: Feb 2006
Location: Istanbul
Posts: 710
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Other 2 mini bug fixed

if you install, 2. step go

1. Bug

find product_advanced_navbar.xml

PHP Code:
            <installcode><![CDATA[
$db->hide_errors();

$db->query_write("CREATE TABLE `" TABLE_PREFIX "advnavbar_navbar` (
  `barid` int(5) unsigned NOT NULL auto_increment,
  `barname` varchar(50) NOT NULL default '',
  `barstatus` tinyint(1) NOT NULL default '0',
  `barlinks` int(10) unsigned NOT NULL default '0'
  PRIMARY KEY  (`barid`)
);"
); 
inline find

PHP Code:
`barlinksint(10unsigned NOT NULL default '0' 
replace

PHP Code:
`barlinksint(10unsigned NOT NULL default '0'
2. Bug

PHP Code:
        $db->query_write("
            INSERT INTO " 
TABLE_PREFIX "advnavbar_links
            (linkname,link,linktarget,linkalt,linkorder,linkstatus,linkbar)
            VALUES
            ('" 
$db->escape_string($vbulletin->GPC['linkname']) . "', '" $db->escape_string($vbulletin->GPC['link']) . "', '" $db->escape_string($vbulletin->GPC['linktarget']) . "', '" $db->escape_string($vbulletin->GPC['linkalt']) . "', '" $db->escape_string($vbulletin->GPC['linkorder']) . "', '" $db->escape_string($vbulletin->GPC['linkstatus']) . "', '" $db->escape_string($vbulletin->GPC['linkbar']) . "'
            "
); 
replace

PHP Code:
        $db->query_write("
            INSERT INTO " 
TABLE_PREFIX "advnavbar_links
            (linkname,link,linktarget,linkalt,linkorder,linkstatus,linkbar)
            VALUES
            ('" 
$db->escape_string($vbulletin->GPC['linkname']) . "', '" $db->escape_string($vbulletin->GPC['link']) . "', '" $db->escape_string($vbulletin->GPC['linktarget']) . "', '" $db->escape_string($vbulletin->GPC['linkalt']) . "', '" $db->escape_string($vbulletin->GPC['linkorder']) . "', '" $db->escape_string($vbulletin->GPC['linkstatus']) . "', '" $db->escape_string($vbulletin->GPC['linkbar']) . "')
            "
); 
Reply With Quote
  #67  
Old 05-17-2006, 06:00 PM
JD45 JD45 is offline
 
Join Date: Feb 2006
Posts: 138
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

^^^does this fix the usergroup permission thing with links?

I downloaded your updated installer, ran it, with overwrite perms and it still didn't fix that paticular bug. Do the files included in your .zip need to be uploaded as well?
Reply With Quote
  #68  
Old 05-17-2006, 06:24 PM
Developer's Avatar
Developer Developer is offline
 
Join Date: Sep 2005
Location: EgYpT
Posts: 662
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You have to upload them
and groups function REMOVED
Reply With Quote
  #69  
Old 05-17-2006, 06:45 PM
bashy bashy is offline
 
Join Date: Nov 2005
Posts: 2,544
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi

I have just done this update and in IE i get
Mark Read
Buddies
User Control Panel
Edit Signature
Edit Profile
Edit Options
Miscellaneous
Private Messages
Subscribed Threads
My Profile
Who's Online
Apply To Be A Mod

In firefox the bar has dissapeared now!!

please see here www.bashys-place.com/forums/
Reply With Quote
  #70  
Old 05-17-2006, 06:59 PM
bashy bashy is offline
 
Join Date: Nov 2005
Posts: 2,544
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The quick link menu, the get new post menu and the search menu no longer works in ie....
Reply With Quote
  #71  
Old 05-17-2006, 07:03 PM
Developer's Avatar
Developer Developer is offline
 
Join Date: Sep 2005
Location: EgYpT
Posts: 662
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Are u using class "vbmenu_control" in your style?
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:42 AM.


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.05310 seconds
  • Memory Usage 2,332KB
  • Queries Executed 26 (?)
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
  • (5)bbcode_php
  • (1)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
  • (4)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