Quote:
Originally Posted by taheri6
it works fine for me on 3.6.5 - but I was wondering if I can make it that the postbit_first template is only used on all pages BUT the first page, so on the first page its normal postbit and then every other page it uses postbit_first
|
You can easily do this by copying your regular postbit content to the top of the postbit_first and sort of do the following with a conditional around it:
Code:
<if condition="$post[postcount]==1">
Your regular postbit content here
<else />
the postbit_first content you want on all other pages
</if>
Good luck!
Hmm, for some reason I had it installed on a vB 3.6.5 forum before, but now I'm trying to install it on another 3.6.5 forum but it's not working there. Bummer

.
EDIT: Nevermind, it works perfectly. I uploaded the product I used at the other forum, in which I added a conditional for a $post[userid]. Thanks again for the great hack, it's been so much easier than adding forumid conditionals into the regular postbit templates!