Installed it on 4.1.3 before and it worked. Not quite the same code on the showthread style on vb 4.2.3. I double checked everything. It just won't show the option to mark it sold on the drop down menu. Here is the style code.
<vb:if condition="$show['addpoll']">
<li><a href="{vb:raw $vboptions.vbforum_url}{vb:if "$vboptions['vbforum_url']", '/', ''}poll.php?{vb:raw session.sessionurl}do=newpoll&t={vb:raw threadid}">{vb:rawphrase add_a_poll_to_this_thread}…</a></li>
</vb:if>
<vb:if condition="$show['soldthread']">
<li><a href="sold.php?{vb:raw session.sessionurl}do=marksold&t={vb:raw threadid}">{vb:rawphrase soldthread_marksold}…</a></li>
<vb:else />
<vb:if condition="$show['soldthread_unsold']">
<li><a href="sold.php?{vb:raw session.sessionurl}do=markunsold&t={vb:raw threadid}">{vb:rawphrase soldthread_markunsold}…</a></li>
</vb:if>
</vb:if>
|