Quote:
Originally Posted by Aceman
You know.. I think the icon I need to hide is the thread status icon.. the one that shows if it's a new or old thread. I'm to figure out if it's possible to remove that.
Additionally, I may try and add a conditional that if you are unregistered, then threadthumbnails don't display.
|
Here you go...in threadbit do the following:
find:
Code:
<a class="threadstatus" rel="vB::AJAX" title="
<vb:if condition="$show['threadcount']">
{vb:rawphrase have_x_posts_in_thread_last_y, {vb:raw thread.dot_count}, {vb:raw thread.dot_lastpost}}
</vb:if>
"></a>
change to this:
Code:
<vb:if condition="!$thread['thumbnail']"><a class="threadstatus" rel="vB::AJAX" title="
<vb:if condition="$show['threadcount']">
{vb:rawphrase have_x_posts_in_thread_last_y, {vb:raw thread.dot_count}, {vb:raw thread.dot_lastpost}}
</vb:if>
"></a></vb:if>