XF 2.0 Make a link for conversation heading

Mr Lucky

Well-known member
Can someone please tell me what I need to edit to make the heading Conversations into a link (to the conversation lists)

Thanks

conversationlink.webp
 
PAGE_CONTAINER change:
HTML:
<h3 class="menu-header">{{ phrase('conversations') }}</h3>
To:
HTML:
<h3 class="menu-header"><a href="{{ link('conversations') }}">{{ phrase('conversations') }}</a></h3>
 
Top Bottom