vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Template Modifications (https://vborg.vbsupport.ru/forumdisplay.php?f=246)
-   -   Forum Home Enhancements - Easy Navbar Links (https://vborg.vbsupport.ru/showthread.php?t=228492)

SuperTaz 05-17-2010 11:06 PM

Good point. I will update them when I get the chance.

keithRichards 05-18-2010 02:05 AM

Hi there,

Great article!

This is along the lines of a similar topic and I was wondering if you are able to give me some advice on the best way to replace the existing vBulletin Navbar tabs with the ddtabmenu style that I found at the Dynamic Drive website.

My questions are probably VERY basic so apologies up front.

1. Do I just make the changes outlined in the article at http://www.dynamicdrive.com/dynamicindex1/ddtabmenu.htm to the existing vBulletin template in Admin cp/Style Manager/Navigation / Breadcrumb Templates/navbar? In effect overwriting the original vBulletin templates?

2. Is the Admin cp/Style Manager/Navigation / Breadcrumb Templates/navbar the correct place to make such changes

3. Or do I make the changes to the downloaded files, and then upload these to the appropriate directory on my vBulletin website. Once this is done do I go to the Admin cp/Download Upload Styles/Import Style XML File and import the file? In effect creating a new template??

3. If I do 3 then is it a matter of setting this as the new default template?


Hope this all makes sense....


Thanks in advance,

SuperTaz 05-20-2010 03:03 AM

Let me update them first and then I will get back with you, KeithRichards. It will be a few days because of working a lot of hours.

SuperTaz 06-09-2010 04:35 AM

Updated with new code for vB 4.0.x.

GONUMBER6 07-23-2010 09:27 PM

This did not work for me. It put the new navbar tabs mixed in with my regular ones. It did not create a separate tab bar. See picture.

https://vborg.vbsupport.ru/external/2010/07/28.jpg

ldma 07-23-2010 10:01 PM

Try this...

In Navbar After..
Code:

<li><a href="search.php{vb:raw session.sessionurl_q}" accesskey="4">{vb:rawphrase advanced_search}</a></li>
        </ul>
</div>

ADD
Code:

<ul id="navtabs" class="navtabs floatcontainer">
<br />br /><br />
<!-- Navbar Links -->
<li class="non-selected"><a class="navtab" href="sample.php?{vb:raw session.sessionurl}">Sample</a></li>
<li class="non-selected"><a class="navtab" href="sample.php?{vb:raw session.sessionurl}">Sample</a></li>
<li class="non-selected"><a class="navtab" href="sample.php?{vb:raw session.sessionurl}">Sample</a></li>
<li class="non-selected"><a class="navtab" href="sample.php?{vb:raw session.sessionurl}">Sample</a></li>
<!-- / Navbar Links -->
</ul>

Seemed to do the trick for me!

GONUMBER6 07-24-2010 02:18 PM

I could not find that code you listed....

SuperTaz 07-25-2010 12:34 AM

Quote:

Originally Posted by GONUMBER6 (Post 2073561)
This did not work for me. It put the new navbar tabs mixed in with my regular ones. It did not create a separate tab bar. See picture.

https://vborg.vbsupport.ru/external/2010/07/28.jpg

It does not create a separate tab bar only adds to the current one.

GONUMBER6 07-26-2010 04:04 PM

I see.... but it shows a separate tab bar in the screenshot.

Or am I missing something?

Where it says server stats, server slots, arcade, downloads, ect. ect.

This is what I was installing this mod for :o

SuperTaz 07-26-2010 09:37 PM

That is not for this mod. That is something I was toying around with. Directly underneath the large tabs in the second shot where it says, (sample, sample, sample, etc) is what the second part of the links do.

GONUMBER6 07-27-2010 03:28 AM

Okay thank you so much anyway :). If you come out with anything for that second row send me a PM :)

SuperTaz 04-11-2011 02:02 AM

Quote:

Originally Posted by GONUMBER6 (Post 2075071)
Okay thank you so much anyway :). If you come out with anything for that second row send me a PM :)

Been working a lot lately. But, if I do, I will let you know. :)

dej 07-21-2011 11:42 AM

When you add a link to the navbar, what Conditional do you need to set to get it to Highlight?

Example:

When I add a link - and click on it - it doesn't Highlight.

Forum stays Highlighted - after "Text4" is clicked.

YouTube:
http://www.youtube.com/watch?v=qXUs3zkAsMQ

owlbassboy 07-22-2011 06:48 AM

i would rather have this put between new posts and private messages, how can i do this?

SuperTaz 07-31-2011 05:26 AM

Quote:

Originally Posted by dej (Post 2223175)
When you add a link to the navbar, what Conditional do you need to set to get it to Highlight?

Example:

When I add a link - and click on it - it doesn't Highlight.

Forum stays Highlighted - after "Text4" is clicked.

YouTube:
http://www.youtube.com/watch?v=qXUs3zkAsMQ

Find this code:

Code:

<li class="selected"><a class="navtab" href="{vb:link forumhome}">{vb:rawphrase forum}</a>
Code:

<li class="non-selected"><a class="navtab" href="{vb:link forumhome}">{vb:rawphrase forum}</a>
Change the red text to "non-selected" on all your styles, as it is shown above in blue, and it should not stay highlighted unless you hover over it.

FYI: You're youtube video is set to private. I cannot access it.

SuperTaz 08-02-2011 04:19 AM

1 Attachment(s)
Quote:

Originally Posted by owlbassboy (Post 2223486)
i would rather have this put between new posts and private messages, how can i do this?

In the navbar template, find this code:

Code:

<li><a href="search.php?{vb:raw session.sessionurl}do=getdaily&amp;contenttype=vBForum_Post">{vb:rawphrase todays_posts}</a></li>
</vb:if>

Right after that add this code:

Code:

<li><a href="sample.php?{vb:raw session.sessionurl}">Sample</a></li>
Result: Look at the screen shot.

Rideharder 08-13-2011 07:41 AM

Quote:

Originally Posted by SuperTaz (Post 2227129)
Find this code:

Code:

<li class="selected"><a class="navtab" href="{vb:link forumhome}">{vb:rawphrase forum}</a>
Code:

<li class="non-selected"><a class="navtab" href="{vb:link forumhome}">{vb:rawphrase forum}</a>
Change the red text to "non-selected" on all your styles, as it is shown above in blue, and it should not stay highlighted unless you hover over it.

FYI: You're youtube video is set to private. I cannot access it.


Ok I need alittle help if I use this I cant see my text in the Quick dropdown.
non-selected and its all white cant see the text.

Lemrith 08-25-2011 05:22 PM

i wanted to remove some of the original navlinks, but somehow i cant get it to work.
so if i choose to kill one of the nav links the whole navbar is crushed...

Mathetria 08-31-2011 04:16 PM

I installed using the first option. It worked great on the top nav bar, but it affected the style on the lower nav bar (where it says New Posts, Private Messages, etc.). For example, where there is the arrow for the drop down menu next to "Quick Links" the arrow is no longer white (it is a dark color) and the drop down menu itself is completely different. There aren't any borders around the drop down menu, and the text is white with a white background.

Once I remove the code, everything goes back to how it should be. Any suggestions?

Thanks!

ETA: I just realized I am running 4.0.8 - maybe it will work when I upgrade to 4.1?

SuperTaz 09-01-2011 09:41 PM

Remember, this is for the latest vbulletin, which is 4.1.5, not the older ones, as they use somewhat different variables.

Quote:

Originally Posted by Rideharder (Post 2232916)
Ok I need alittle help if I use this I cant see my text in the Quick dropdown.
non-selected and its all white cant see the text.

Remember, it may not show with and outdated style.

ravenscape 02-13-2012 05:22 AM

I would like to use this mod to add a link to my vbadvanced portal page.

the forum link is http://myforum.org/forum/forum.php
the portal link is http://myforum.org/index.php

Is there a way to do this?

BlueCheri 02-13-2012 06:26 AM

Tagged.

G!

SuperTaz 04-25-2012 06:18 PM

Quote:

Originally Posted by ravenscape (Post 2299158)
I would like to use this mod to add a link to my vbadvanced portal page.

the forum link is http://myforum.org/forum/forum.php
the portal link is http://myforum.org/index.php

Is there a way to do this?

Sorry about the delay, but, those links no longer work. Do you have another URL I could look at for you? :)

ravenscape 04-25-2012 08:13 PM

ah...those were examples of what the forum links look like, not the actual forum links.

I was able to work this out on my own. Thanks!

Griphus 04-26-2012 04:13 PM

Hello,

I've just used this to add an "apply" link to my navbar. However, it only shows up on the Forum page, and not any of the other pages. I am not sure what I did wrong.

www.TribeGaming.com

Thank you!

SuperTaz 04-26-2012 06:04 PM

Quote:

Originally Posted by Griphus (Post 2323774)
Hello,

I've just used this to add an "apply" link to my navbar. However, it only shows up on the Forum page, and not any of the other pages. I am not sure what I did wrong.

www.TribeGaming.com

Thank you!

Which one did you use? There are two different versions on the OP.


All times are GMT. The time now is 08:36 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01411 seconds
  • Memory Usage 1,802KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (8)bbcode_code_printable
  • (8)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (26)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete