Lack of interest Add Overlay to Members Page

This suggestion has been closed automatically because it did not receive enough votes over an extended period of time. If you wish to see this, please search for an open suggestion and, if you don't find any, post a new one.

Amaury

Well-known member
As title.

Just something I think would be useful. For example, if you want to send a staff member a conversation, but don't want to go all the way to their profile, having the member card appear would be useful.
 
Upvote 0
This suggestion has been closed. Votes are no longer accepted.
i can already do that <removed - inappropriate language> i think you mean start a conversation with adm right?
 
Last edited by a moderator:
Easy fix.

member_list template

find
Code:
        <xen:include template="member_list_item">
            <xen:set var="$noOverlay">1</xen:set>
        </xen:include>

Replace with
Code:
<xen:include template="member_list_item" />

and in 'member_notable' template

find
Code:
            <xen:include template="member_list_item">
                <xen:set var="$noOverlay">1</xen:set>
                <xen:set var="$extraTemplate"><xen:if is="{$bigKey}"><span class="bigNumber">{xen:number {$user.{$bigKey}}}</span></xen:if></xen:set>
            </xen:include>

and replace with
Code:
            <xen:include template="member_list_item">
                <xen:set var="$extraTemplate"><xen:if is="{$bigKey}"><span class="bigNumber">{xen:number {$user.{$bigKey}}}</span></xen:if></xen:set>
            </xen:include>

Not sure why they don't want the overlay on the member list, seems a bit odd to me.
 
Top Bottom