[XTR] More Thread Same Forum

[XTR] More Thread Same Forum 1.0.4

No permission to download
I think a random thread would be a good idea for me to use. I will implement this soon. Thank you for taking the time to reply @XDinc. If you did implement similar thread option in the future a lot of people would use this add-on just an idea. I know it would require some type of algorithm but if it wasn't difficult to develop it would be a nice feature to see
 
Hello, there is an inversion between counts : view and reply as you can see below
ex: 68 replies but 0 view... I think it’s 0 reply and 68 views... (y)

Capture d’écran 2019-03-24 à 21.05.09.webp
 
I already fixed this in the xentr_more_thread template

HTML:
<xf:if is="{$xf.options.xentr_morethread_count}">
    <dd><i class="fas fa-eye"></i> {{ $thread.discussion_type == 'redirect' ? '&ndash;' : $thread.view_count|number }}</dd>
    <dd><i class="fas fa-comment"></i> {{ $thread.discussion_type == 'redirect' ? '&ndash;' : $thread.reply_count|number }}</dd>
</xf:if>
 
Top Bottom