Version: 1.4, by Lynne
Developer Last Online: Oct 2022
Category: Show Thread Enhancements -
Version: 4.0.x
Rating:
Released: 12-01-2009
Last Update: 10-21-2010
Installs: 459
Uses Plugins Auto-Templates
Re-useable Code Translations
No support by the author.
This just adds the breadcrumbs to the bottom of the showthread page. I saw this thread over at vb.com and then decided to share it as I wrote it for myself.
Version History:
1.0 2009-12-01: initial release by Lynne at vbulletin.org (pre Beta 5)
1.1 2009-12-04: fixed the issue regarding a single apostrophe in a thread or forum title (Thanks go to BBR-APBT for the fix!) (Beta 5)
1.2 2009-12-12: small template change for new release, RC2 (RC2)
1.3 2009-05-10: added lower breadcrumbs to forumdisplay page (up to 4.0.7)
1.4 2009-10-21: fixed for use in 4.0.8 (4.0.8)
To install:
1. Import product-lynne_lower_breadcrumbs.xml
To uninstall:
1. Uninstall "Lower Breadcrumbs"
Optional:
Added in 1.1: in the plugin, Add Lower Breadcrumbs to SHOWTHREAD template, you will see the following lines:
PHP Code:
// to put it above the Quick Reply box
//$find = '<!-- scripts for quick reply and quick edit -->';
// to put it above the Thread Information box
$find = '<div id="thread_info" class="thread_info block">';
If you wish to have the Breadcrumbs above the Quick Reply box, then uncomment that line and comment out the one to put it above the Thread Information box, like this:
PHP Code:
// to put it above the Quick Reply box
$find = '<!-- scripts for quick reply and quick edit -->';
// to put it above the Thread Information box
//$find = '<div id="thread_info" class="thread_info block">';
Quote:
Originally Posted by Alan_SP
Also, I added one more location to put lower breadcrumb in, just below posts (above inline moderation, above reply button...).
I searched and did not find any of the code listed in the mod. All I did was just download the xml file. Is there any code change that can keep breadcrumbs running in a closed thread?
I searched and did not find any of the code listed in the mod. All I did was just download the xml file. Is there any code change that can keep breadcrumbs running in a closed thread?
Did you try changing the plugin to put it above the thread info instead of above the quick reply?
Did you try changing the plugin to put it above the thread info instead of above the quick reply?
PHP Code:
// to put it above the Quick Reply box //$find = '<!-- scripts for quick reply and quick edit -->'; // to put it above the Thread Information box $find = '<div id="thread_info" class="thread_info block">';
Do this?
I can't find the above code. I can find the (scripts for quick reply and quick edit) and ('<div id="thread_info" class="thread_info block">') But when I find those lines in showthread it does not look anything like the php code you have above.
Hi Lynne thank you. I have installed it above the qR box any chance it can be visible for guests as well please?
You could modify the SHOWTHREAD template and just add {vb:raw breadcrumbs} where you want (and not within the condition it is currently within) and then remove the find/replace code from the "Add Lower Breadcrumbs to SHOWTHREAD template" plugin.
// to put it above the Quick Reply box
//$find = '<!-- scripts for quick reply and quick edit -->';
// to put it above the Thread Information box
$find = '<div id="thread_info" class="thread_info block">';
I can't find the above code. I can find the (scripts for quick reply and quick edit) and ('<div id="thread_info" class="thread_info block">') But when I find those lines in showthread it does not look anything like the php code you have above.
Am I in the right spot in showthread?
Her code is in the XML file, not the showtread template. That's where you make the changes to where you want the breadcrumbs placed.