Thread Prefix Listing show tabs type

The prefix listing above the thread list is from an add-on/modification as that is not default functionality.

Try asking in the discussion thread.
 
Thanks Brogan.

Code:
<xen:if is="{$forum.prefixCache}">
    <div class="discussionListFilters secondaryContent" >
     
            <tr>
            <xen:foreach loop="$forum.prefixCache" value="$prefixes">
                <xen:foreach loop="$prefixes" value="$prefixId">
                <td>
                    &nbsp;<a href="{xen:link forums, $forum, 'prefix_id={$prefixId}'}" class="prefixLink"
                            title="{xen:phrase show_only_threads_prefixed_by_x, 'prefix={xen:helper threadPrefix, $prefixId, escaped, ''}'}">{xen:helper threadPrefix, $prefixId, html, ''}</a>
                </td>
                </xen:foreach>
            </xen:foreach>
            </tr>
    </div>
</xen:if>

I used this code to insert Thread_list Template to show a list prefix listing
 
Top Bottom