I set the settings to auto close in the settings options in admincp
see! :{ after i change the prefix still open to reply oh 4.1.2 is the version
I feel this is a worthwhile mod to develop has a lot of possibility,
i think i have all the settings set to auto close but just not doing it for me.
since you made an account log in and make a n ad then mark it sold :} with the user permissions i have enabled if you have time later.
added:
OK I'm sure its not working in this new version its all installed and prefix selection works manually on post and edit,
but the thread drop down control does not have the option to mark as sold, and I don't see any screens showing you giving the users permission to close a thread.
here is the thread control screen of my install, so i guess the prefix options are working but don't seem to be using any outside files I uploaded from the install zip like sold.php
PHP 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>
this is the vb if condition in the new version
changed your show template code to match the new version and it works now
PHP Code:
<vb:if condition="$show['soldthread']">
<li><a href="{vb:raw $vboptions.vbforum_url}{vb:if "$vboptions['vbforum_url']", '/', ''}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="{vb:raw $vboptions.vbforum_url}{vb:if "$vboptions['vbforum_url']", '/', ''}sold.php?{vb:raw session.sessionurl}do=markunsold&t={vb:raw threadid}">{vb:rawphrase soldthread_markunsold}…</a></li>
</vb:if>
</vb:if>