Quote:
Originally Posted by IrvingvB
The second problem is fixed, but the first one is still open though. Where can I delete the topic title from the first post, which is automatically added?
|
Edit the template posbit_legacy and find:
Code:
<vb:if condition="$post['title'] OR $show['messageicon']">
<h2 class="posttitle icon">
<vb:if condition="$show['messageicon']"><img src="{vb:raw post.iconpath}" alt="{vb:raw post.icontitle}" /> </vb:if>{vb:raw post.title}
</h2>
</vb:if>
Replace with:
Code:
<vb:if condition="!$GLOBALS['FIRSTPOSTID']">
<vb:comment>Removed icon and title from first post</vb:comment>
<vb:else />
<vb:if condition="$post['title'] OR $show['messageicon']">
<h2 class="posttitle icon">
<vb:if condition="$show['messageicon']"><img src="{vb:raw post.iconpath}" alt="{vb:raw post.icontitle}" /> </vb:if>{vb:raw post.title}
</h2>
</vb:if>
</vb:if>
Should do the trick

.
_____________________________________
Just in case anyone wants to know about the postbit template versus the postbit_legacy template....
Edit template posbit, find:
Code:
<vb:if condition="$post['title'] OR $show['messageicon']">
<h2 class="title icon">
<vb:if condition="$show['messageicon']"><img src="{vb:raw post.iconpath}" alt="{vb:raw post.icontitle}" /> </vb:if>{vb:raw post.title}
</h2>
</vb:if>
Replace with:
Code:
<vb:if condition="!$GLOBALS['FIRSTPOSTID']">
<vb:comment>Removed icon and title from first post</vb:comment>
<vb:else />
<vb:if condition="$post['title'] OR $show['messageicon']">
<h2 class="title icon">
<vb:if condition="$show['messageicon']"><img src="{vb:raw post.iconpath}" alt="{vb:raw post.icontitle}" /> </vb:if>{vb:raw post.title}
</h2>
</vb:if>
</vb:if>