Log in

View Full Version : Thread title in every post


AnabolicResourc
02-05-2007, 08:40 PM
Now the thread title and the message icon only show up on the first post of a thread.
I would like to have it on all reply's also.

I'm using the Legacy (Vertical) Postbit Template and found this:

<if condition="$show['messageicon'] OR $post['title']">
<!-- icon and title -->
<div class="smallfont">
<if condition="$show['messageicon']"><img class="inlineimg" src="$post[iconpath]" alt="$post[icontitle]" border="0" /></if>
<if condition="$post['title']"><strong>$post[title]</strong></if>
</div>
<hr size="1" style="color:$stylevar[tborder_bgcolor]" />
<!-- / icon and title -->
</if>

I think i have to edit something here, but i'm just not sure what to edit.
Can someone help me with this ?

Thanks

ericgtr
02-05-2007, 10:33 PM
At first glance I would guess you would want to use:
$post['title']

You can place it where you want, tweak with it a bit and you'll find your spot.

AnabolicResourc
02-06-2007, 06:56 PM
Yup you're right, but i guess the if condition looks if it's the first post so it won't show up on the reply.

I tried to comment out several things, but nothing really works.

If i just place $post[title] with the <div> the title shows up twice in the first post and not on the other replies.

Needed to edit more then i thought but it's working now.