The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Placing SIMILAR THREADS Box under First Post or somewhere else instead of LAST
Hello, I've been trying like crazy to get this similar threads box under the first post instead of the last post.
Well in fact, I'd like to be able to put the similar threads box wherever I want it I just can't figure out how to use the {vb:raw similarthreads} tag.... This tag only seems to work in the SHOWTHREAD template. I tried removing it and placing it at the end of the postbit_legacy template but this didn't do anything, nothing showed up. I removed the {vb:raw similarthreads} tag from the showthread template and it no longer shows on the at the bottom, which tells me at the very least this is the tag that displays the similar threads box, but why is it that I can't place this tag anywhere else in other templates and have it show up? The end goal, is to have a simple <vb:if is_first_shown>{vb:raw similarthreads}</vbif> (excuse the lack of proper code, just throwing examples out there) type entry in the postbit_legacy template at the bottom... but either way no matter where I put the {vb:raw similarthreads} tag it doesn't work, unless it's in the showthread template. Ideas? Reason? Thanks! |
#2
|
|||
|
|||
Anyone?
|
#3
|
|||
|
|||
Can somebody please help me here?? In a step-by-step fashion?
|
#4
|
|||
|
|||
The reason you can't put {vb:raw similarthreads} in the postbit_legacy template is because a variable has to be registered to a template before you can use it in a vb:raw tag. In addition, the similarthreads section hasn't even been created yet when the posts are being rendered, so there's no way to simply register similarthreads to the postbit_legacy template.
The only (relatively easy) thing I can think of would be to create a plugin using hook showthread_complete. At that point the similar threads section has been created and is in $similarthreads, and the posts section has been created as $postbits. So what you might be able to do is do a str_replace() on $postbits to insert the similar threads, then unset $similarthreads, like: Code:
if (isset($similarthreads)) { $find = "something"; $postbits = str_replace($find, $similarthreads, $postbits); unset($similarthreads); } That leaves the question of what to use as "something" and how to get it into postbit_legacy. I was thinking something like an html comment (so if the plugin is disabled it won't be displayed), so maybe "<!-- similar threads -->". Then you'd use something similar to what you posted above, maybe Code:
<vb:if condition="$post['isfirstshown']"><!-- similar threads --></vb:if> Anyway, I haven't actually tested this so you might run in to some issues. |
#5
|
|||
|
|||
Well although that makes perfect sense, (it really does) I haven't got a clue how to use 'hooks' or how to create 'plugins' lol
|
#6
|
|||
|
|||
OK, you did say you wanted step by step. Thing is I haven't tried it so I could step by step you into something that doesn't actually work. But here goes:
1) Edit postbit_legacy, and where you want the similar threads to appear (at the end I suppose), insert this: Code:
<vb:if condition="$post['isfirstshown']"><!-- similar threads --></vb:if> 2) In the adminCP go to Products & Plugins > Add New Plugin, and find "showthread_complete" in the Hook Location dropdown. 3) Enter a title, something so that later you'll remember what this plugin is for. 4) In the large "Plugin PHP Code" box, enter this: Code:
if (isset($similarthreads)) { $postbits = str_replace('<!-- similar threads -->', $similarthreads, $postbits); unset($similarthreads); } 5) Select the Yes radio button next to Plugin is Active at the bottom, and click Save. There's a chance it won't work. If it doesn't, post here and maybe I'll have to actually try it. |
2 благодарности(ей) от: | ||
addamroy, christon26 |
#7
|
|||
|
|||
Thanks man you are truly awesome, we're getting somewhere.
What you said works, HOWEVER, just a little bit of formatting issues it seems. If you recreate what you said (shouldnt cause any issues), it doesn't look the same as it does under the posts like where it shows by default. If we can fix that we're golden! |
#8
|
|||
|
|||
The problem I have (and the reason that I didn't test this before posting) is that I've never been able to get similar threads to work on a test forum. I really don't understand how they work - I used exactly the same word in the title and body of several threads but they still didn't score high enough to be considered "similar".
Anyway, I was afraid that the formatting might not be right, and I'm not big on the formatting stuff. You probably need to copy more of the surrounding formatting from the SHOWTHREAD template. Try this (where you modified the postbit_legacy template): Code:
<vb:if condition="$post['isfirstshown']"> <div id="thread_info" class="thread_info block"> <!-- similar threads --> </div> </vb:if> |
#9
|
|||
|
|||
It's basically removing the extra 'spacing' between posts for some reason. It is there though!
--------------- Added [DATE]1340141685[/DATE] at [TIME]1340141685[/TIME] --------------- Perfect! --------------- Added [DATE]1340142127[/DATE] at [TIME]1340142127[/TIME] --------------- kinda bummed out it wont let me thank you again until i thank someone else...... sup with that |
#10
|
|||
|
|||
lol...I guess it's designed to make you spread it around. It's OK, glad you got it working.
|
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|