PDA

View Full Version : How to remove show similar thread section if the thread is closed.


snowname
04-30-2013, 03:22 PM
I would like hide similar thread if the thread is closed.

I put the flowing code, but it remove similar thread in all thread. I think it is because the value $show['closethread'] is not registered. How to register that?

<vb:if condition="$show['closethread']">
<vb:if condition="$similarthreadbits">
<div id="similar_threads">
<h4 class="threadinfohead blockhead">{vb:rawphrase similar_threads}</h4>
<div id="similar_threads_list" class="thread_info_block blockbody formcontrols">
<ol class="similar_threads">
{vb:raw similarthreadbits}
</ol>
</div>
</div>
</vb:if>
</vb:if>

nhawk
04-30-2013, 06:39 PM
You're editing the wrong template to use $show['closethread']...

Locate this in the SHOWTHREAD template.
{vb:raw similarthreads}

And replace with this..
<vb:if condition="$show['closethread']">
{vb:raw similarthreads}
</vb:if>

snowname
04-30-2013, 08:42 PM
Thanks. It works well.