vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   Mini Navbar: Breadcrumb at the bottom of a thread (https://vborg.vbsupport.ru/showthread.php?t=98485)

randominity 10-14-2005 10:00 PM

Mini Navbar: Breadcrumb at the bottom of a thread
 
Description
There's no quick way to jump back to a forum when you've reached the bottom of a thread, so this adds a breadcrumb to the bottom of a thread.

Install / Upgrade
Download the attached XML file, and import it at
Admin Control Panel > Plugins & Products > Manage Products > Add/Import Product

Remember to "Allow Overwrite" if you are upgrading.

Mod Info
0 - Queries
0 - Phrases
2 - Plugins
1 - Template
0 - Template Edits


v1.0.4
After snooping around for a little bit on these forums, I found a neat way to avoid template edits. Big thanks to PaulM and his method of doing this ^^.
Now this mod no longer requires a template modification!
I have removed the non-inline display method, so now it will only be "inline"
v1.0.3
Initial vB 3.6.x version


Please click "Install" if you have installed this mod! Thanks!

Boofo 10-15-2005 06:07 PM

You might want to cache the template. ;)

randominity 10-15-2005 06:28 PM

Doh, how would I go about that using plugins?

Would I add something like $globaltemplates[] = 'navbar_mini';
at showthread_start?

Snake 10-15-2005 06:52 PM

Not a bad hack, thanks. :)

Sooner95 10-15-2005 06:56 PM

you know, this is a good idea... Nice job. I like hacks that make sense.

Sooner95 10-15-2005 06:59 PM

imported it, but it didnt do anything...I'm no coder, so can't really help you with what your missing tho...

version2 10-15-2005 10:31 PM

Quote:

Originally Posted by Sooner95
imported it, but it didnt do anything...I'm no coder, so can't really help you with what your missing tho...

I installed the product and I don't see any new navbar down at the bottom, either.

karrerax 10-15-2005 10:36 PM

Quote:

Originally Posted by version2
I installed the product and I don't see any new navbar down at the bottom, either.

same problem

randominity 10-15-2005 11:15 PM

Oops forgot there needs to be another template edit!

Code:

----------------
open SHOWTHREAD:
----------------

+------
| FIND:
+------
        <if condition="$show['pagenav'] OR $show['inlinemod']">
                <td align="$stylevar[right]">$pagenav
+-----------
| ABOVE ADD:
+-----------
        <td style="align: $stylevar[left]; vertical-align: top;">$navbar_mini</td>
       
-------------------
end template edits
-------------------

Btw for those who have already installed you should reinstall this new .xml because it *should* cache the added template.

Boofo 10-15-2005 11:42 PM

Quote:

Originally Posted by randominity
Doh, how would I go about that using plugins?

Would I add something like $globaltemplates[] = 'navbar_mini';
at showthread_start?

Hook: cache_templates

PHP Code:

if(THIS_SCRIPT == 'showthread')
{
  
$globaltemplates array_merge($globaltemplates, array('navbar_mini'));


;)

randominity 10-16-2005 05:00 AM

Oops ok, thanks Boofo! :)

karrerax 10-16-2005 07:07 AM

Ok Installed!

(Sorry for English) :(
Its posible put the mini navbar in all Forum Indexs? you can view this feature in a PhpBB forum.

Thanks

SnowBot 10-16-2005 09:19 PM

OK Installed but nothing :(

In your instructions is says

Hooks: Yes
Edit: 1 template (SHOWTHREAD)
Add: 1 template (navbar_mini)

Now what do we add in the NEW navbar_mini Template?

moonclamp 10-16-2005 09:38 PM

This is something I've been looking for for ages ...

Suggestion on the template edit though ... works better for me doing it this way :)

In SHOWTHREAD TEMPLATE;

find:

HTML Code:

</table>
<!-- / controls below postbits -->

Above add:

HTML Code:

<tr valign="bottom">
<td colspan="4" class="smallfont"><div align="right">$navbar_mini</div></td>
</tr>


mindfrost82 10-17-2005 02:32 PM

Quote:

Originally Posted by karrerax
Ok Installed!

(Sorry for English) :(
Its posible put the mini navbar in all Forum Indexs? you can view this feature in a PhpBB forum.

Thanks

I'm looking for this also.

But one question...why not just use the ForumJump menu?

michaelbenson 10-17-2005 03:03 PM

Quote:

Originally Posted by SnowBot
OK Installed but nothing :(

In your instructions is says

Hooks: Yes
Edit: 1 template (SHOWTHREAD)
Add: 1 template (navbar_mini)

Now what do we add in the NEW navbar_mini Template?

I'd like to know this also ... :ermm:

southernlady 10-17-2005 03:32 PM

Have you ever used this at TAZ? It's like that one...MUCH easier and THANK YOU!

Is there a way to make the code bolder and thicker? I love it but the font is hard to read. Maybe if you could bold it and use a larger font? Liz

randominity 10-18-2005 06:51 AM

Quote:

Originally Posted by SnowBot
OK Installed but nothing :(

In your instructions is says

Hooks: Yes
Edit: 1 template (SHOWTHREAD)
Add: 1 template (navbar_mini)

Now what do we add in the NEW navbar_mini Template?

Nothing, the .xml file adds the navbar_mini template for you.

As for displaying this on forum indexes, yes it can/will be done.

And making the font bigger/bold can/will be done as well.

(Sorry I have a lot of work to do tonight and it's already 3am T_T)

Oh and forum jump menu requires another step to open the dropdown and look for what forum, where as the breadcrumb already as the hierarchy laid out in text immediately after you're done reading a thread.

michaelbenson 10-18-2005 02:06 PM

I prefer mine below the Previous Thread - Next Thread area.
Nice idea :)

karrerax 10-18-2005 03:39 PM

Quote:

Originally Posted by mindfrost82
I'm looking for this also.

But one question...why not just use the ForumJump menu?

I used ... are my users LOL

Sal Collaziano 10-18-2005 04:43 PM

I'm looking for this to be more uniform in appearance with the top breadcrumbs/links.. The screenshot doesn't look to be this way.. Has it been updated since?

southernlady 10-18-2005 09:51 PM

Quote:

And making the font bigger/bold can/will be done as well.
Let me know when you do, okay? I love it but it dissappears cause it's so thin. If I knew where to adjust it myself, I would. Liz

Telegon80 10-19-2005 12:44 AM

what does 'above add' mean?

Tulsa 10-19-2005 01:04 AM

It means when you find the what they are pointing you at, you add what they are referring to above it.

Telegon80 10-19-2005 01:23 AM

thank you sir. just wanted to ask before i fubar the board. :D

Telegon80 10-19-2005 01:55 AM

okey its installed works great!

carrie31 10-19-2005 06:01 AM

very nice hack ! it works the same as the screenshot :P thanks !

mindfrost82 10-20-2005 11:55 PM

Anyone figure out how to get this to show on the Forumdisplay page under the threadlist?

blackpheonix 10-24-2005 10:41 AM

Quote:

Originally Posted by mindfrost82
Anyone figure out how to get this to show on the Forumdisplay page under the threadlist?

go to this post

https://vborg.vbsupport.ru/showthrea...493#post803493

descds 10-31-2005 11:09 AM

This is exactly what my members wanted after upgraded from phpbb to vbulletin.

Many thanks, excellent hack.

**INSTALLED **

descds 10-31-2005 11:31 AM

I would like to display this inline in the Thread list also. That other hack opens a new box which is under the display options.

How can i get this hack to display 'inline' on the thread view just after the newthread icon ?

GrimJack 11-13-2005 02:58 AM

Thanks for this, saves me the work of adding it myself. Simple, easy to install, and it works - what else could you ask for? :)

randominity 11-24-2005 02:12 AM

Updated to include a theme edit for an "Inline" version (check out the screenshot).

Enjoy! ^.^

descds 11-24-2005 06:03 AM

Quote:

Originally Posted by randominity
Updated to include a theme edit for an "Inline" version (check out the screenshot).

Enjoy! ^.^

Just download the xml file and import it through the ACP.

Erm the xml seems to be missing :) Or i could be half asleep and not seeing it (which is highly likely) ...

DefenceTalk 11-24-2005 03:23 PM

Quote:

Originally Posted by descds
Erm the xml seems to be missing :) Or i could be half asleep and not seeing it (which is highly likely) ...

Dude, where is the xml? :D

Thank you!

randominity 11-24-2005 05:55 PM

oops! I guess I had a late night last night too!

I deleted my zip with the readme file I had, so here's the XML, just follow the template edits up top.

CuriousGeorge 02-09-2006 01:42 PM

Thank you for this - look great.

Clayton 03-03-2006 01:52 PM

Hi

I have added this, however it does not add the folder image as in the old

https://vborg.vbsupport.ru/showthread.php?t=60824

Mini Navbar: Breadcrumb at the bottom of a thread

has anyone got any ideas on how to get the folder to show, please?

childfun 03-05-2006 05:33 AM

Quote:

Originally Posted by Boofo
You might want to cache the template. ;)

Nice. Clicks install.

alexanderpas 05-27-2006 10:07 AM

could you recreate/reupload the readme too please


All times are GMT. The time now is 05:20 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.01718 seconds
  • Memory Usage 1,816KB
  • 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
  • (1)bbcode_code_printable
  • (2)bbcode_html_printable
  • (1)bbcode_php_printable
  • (12)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
  • (40)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