PDA

View Full Version : How can i remove the post title?


netaffiliatetal
12-10-2007, 01:28 PM
how can i remove the post title?
i only want to show title on the #1 post.
thanks in advance.

http://img218.imageshack.us/img218/6799/testthread1197299235000ab9.png

valdet
12-10-2007, 03:56 PM
Go to your postbit template and find this block of code and remove it

<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>

Make sure you open two windows of postbit template. In one of them remove that block of code and see if it fits how you want it. If it doesnt, save the postbit from your other window to revert to its previous state.

Regards.
Val.

netaffiliatetal
12-11-2007, 12:21 AM
but it also remove the post title on #1 post,
any suggestion?

Lynne
12-11-2007, 03:42 AM
but it also remove the post title on #1 post,
any suggestion?
Do a conditonal. Something like:

<if condition="$post['postid']==$thread['firstpostid']>
.... leave post title info in here
</if>