Login  Register

Re: Change Admin text under avatar

Posted by Mencey Melgar on Aug 10, 2018; 10:21am
URL: https://support.nabble.com/Change-Admin-text-under-avatar-tp7601206p7601229.html

Hello,

In order to use a custom avatar you should edit the avatar_label macro to accept img paramenter:
<override_macro name="avatar_label" parameters="condition,img" dot_parameter="label">
    <n.if.condition>
        <then>
            <img src="[n.img/]"/>
        </then>
    </n.if.condition>
</override_macro>

Then, you have to set the img from classic_big_avatar_cell:
<override_macro name="classic_big_avatar_cell" requires="node">
    <div class="avatar-outer">
        <div class="avatar-inner">
            <n.owner.avatar size="big" border_class="medium-border-color"/>
        </div>
    </div>
    <n.avatar_label condition="[n.owner.is_site_admin/]" img="http://support.nabble.com/file/n7601206/admin-1.png" label=""/>
    <n.avatar_label condition="[n.owner.is_banned/]" img="banned image path" label=""/>
    <n.owner.post_count/>
</override_macro>
:) Helper