XF 2.1 How to add gender to userblurb?

Azaly

Active member
By default userblurb looks like [Role / Custom Title] · Age · Location. I'd like to add gender line as it was in 1.5 — Gender · [Role / Custom Title] · Age · Location.

If I just edit member_tooltip by adding something like this

Code:
<xf:if is="$user.Profile.custom_fields.gender">
                    <span role="presentation" aria-hidden="true">· </span> <span class="userTitle" dir="auto">{{$user.Profile.custom_fields.gender}}</span>
</xf:if>

gender render incorrectly because <xf:userblurb user="$user" tag="div" /> render inside div. Maybe userblurb is possible to edit in another way o_O ?
 
Top Bottom