XF 1.3 Highlight closed conversations

Janmaat

Active member
Is there a way/possibility to highlight conversations that have been closed? Maybe with a little lock icon or something?
 
Is there a way/possibility to highlight conversations that have been closed? Maybe with a little lock icon or something?

It requires a template edit but doable.

Template conversation_list_item

Find:
Code:
<xen:if is="{$conversation.is_starred}"><a href="{xen:link conversations/starred}"><span class="starred" title="{xen:phrase starred}">{xen:phrase starred}</span></a></xen:if>

Add below:
Code:
<xen:if is="!{$conversation.conversation_open}"><span class="locked" title="{xen:phrase locked}">{xen:phrase locked}</span></xen:if>
 
It requires a template edit but doable.

Template conversation_list_item

Find:
Code:
<xen:if is="{$conversation.is_starred}"><a href="{xen:link conversations/starred}"><span class="starred" title="{xen:phrase starred}">{xen:phrase starred}</span></a></xen:if>

Add below:
Code:
<xen:if is="!{$conversation.conversation_open}"><span class="locked" title="{xen:phrase locked}">{xen:phrase locked}</span></xen:if>
Thanks a lot for your help :)

I'll try this :)
 
Top Bottom