XF 2.3 hide the user name in navigation

Solution
Probably the quickest way is to add this to your template extra.less:

CSS:
.p-navgroup--member .p-navgroup-linkText
{display:none}

Or remove this in template PAGE_CONTAINER (I think it is there twice)

Code:
<span class="p-navgroup-linkText">{$xf.visitor.username}</span>
Probably the quickest way is to add this to your template extra.less:

CSS:
.p-navgroup--member .p-navgroup-linkText
{display:none}

Or remove this in template PAGE_CONTAINER (I think it is there twice)

Code:
<span class="p-navgroup-linkText">{$xf.visitor.username}</span>
 
Last edited:
Solution
Back
Top Bottom