ToNetU |
01-28-2010 04:42 PM |
Quote:
Originally Posted by RedHacker
(Post 1968323)
It is now work.. Can display "Thread Starter" and the first post....?
|
do you want to display "Thread Starter" in the first post as well? if YES , use this code instead of the old one:
Code:
<vb:if condition="$thread[postuserid] == $post[userid]">
<img src="images/misc/subscribed.png" alt="Thread Starter"/> <span style="color:red"><b><u>Thread Starter</u></b></span>
</vb:if>
this will display "Thread Starter" in all his/her posts + the first post "which is the thread"
and PLEASE don't forget to click INSTALL.
Quote:
Originally Posted by Front Range 4x4
(Post 1968380)
I didn't use the image but it shouldn't matter, here's how I changed it to suit my needs.
<vb:if condition="$post['postcount'] == 1">
<vb:else />
<vb:if condition="$thread[postuserid] == $post[userid]">
<br /><b><small>Started this Thread</small></b></span>
</vb:if></vb:if>
|
if you doesn't want to use the image/icon use this code better:
Code:
<vb:if condition="$post['postcount'] == 1">
<vb:else />
<vb:if condition="$thread[postuserid] == $post[userid]">
<br /><b><small>Started this Thread</small></b>
</vb:if></vb:if>
- removed </span>
|