I tried to kludge together a feature and got as far as I can with my limited knowledge of coding these things. I want to show the list of tags in the last column of the search results page, that are associated to the thread in the first column.
I removed the link to the forum that was there and borrowed code from near the bottom of the thread display page.
The code for that is the tagbit_wrapper template which includes the tagbit template:
tagbit_wrapper:
Code:
<vb:if condition="$tag_list">
<ul class="commalist">
{vb:raw tag_list}
</ul>
<vb:else />
<i>{vb:rawphrase none}</i>
</vb:if>
<img src="{vb:stylevar imgdir_misc}/11x11progress.gif" id="tag_form_progress" class="inlineimg hidden" alt="" />
tagbit:
Code:
<li><a href="tags.php?{vb:raw session.sessionurl}tag={vb:raw tag_url}">{vb:raw tag}</a></li>
I inserted it in the last column, and it's returning 'None' because it's no longer linked to the thread. It assumes it's on the same page as the thread itself. How would I modify the code to make it point to the thread in the first column of the search results page?
Thanx