How do I add an image instead of the rank text?

classic Classic list List threaded Threaded
5 messages Options
Reply | Threaded
Open this post in threaded view
|

How do I add an image instead of the rank text?

Evildaddy
Here's the code so far
 <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_in_group group= 'Premium'/]" label="[t]Premium[/t]"/>
    <n.avatar_label condition="[n.owner.is_in_group group= 'AdBot'/]" label="[b][t]AdBot[/t][/b]"/>
    <n.avatar_label condition="[n.owner.is_in_group group= 'Registered Users'/]" label="[h2][b][t]Junior Member[/t][/b][/h2]"/>
    <n.avatar_label condition="[n.owner.is_in_group group= 'Moderator'/]" label="[h2][b][t]Moderator[/t][/b][/h2]"/>
    <n.avatar_label condition="[n.owner.is_in_group group= 'Members'/]" label="[h2][b][t]Member[/t][/b][/h2]"/>
    <n.avatar_label condition="[n.owner.is_site_admin/]" img src="http://s18.postimg.org/3tjy92bf9/Admin.png"/>
    <n.avatar_label condition="[n.owner.is_banned/]" label="[t]Banned User[/t]"/>
    <n.owner.post_count/>
</override_macro>

I would like an image to appear instead of Admin.
Reply | Threaded
Open this post in threaded view
|

Re: How do I add an image instead of the rank text?

Pedro
Edit your avatar_label macro like this:
<override_macro name="avatar_label" parameters="condition,img" dot_parameter="label" >
    <n.if.condition>
        <then>
            <div class="avatar-label weak-color"><n.label/></div>
            <img src="[n.img/]"/>
        </then>
    </n.if.condition>
</override_macro>
Now you can do this:
<n.avatar_label condition="[n.owner.is_site_admin/]" label='' img="http://s18.postimg.org/3tjy92bf9/Admin.png"/>
My test forum.
Reply | Threaded
Open this post in threaded view
|

Re: How do I add an image instead of the rank text?

Evildaddy
Thank you so much, Pedro! Anything I can do to help you? I really appreciate your constant help.
Reply | Threaded
Open this post in threaded view
|

Re: How do I add an image instead of the rank text?

Pedro
You are welcome.
Yes, you can help me, we have users that help other users here. You can help them if you see any issue you know.

Thanks.
My test forum.
Reply | Threaded
Open this post in threaded view
|

Re: How do I add an image instead of the rank text?

Ettol
CONTENTS DELETED
The author has deleted this message.