Login  Register

Re: need help with groups and titles...

Posted by Hugo <Nabble> on Feb 01, 2012; 8:54pm
URL: https://support.nabble.com/need-help-with-groups-and-titles-tp7209384p7244345.html

As Greg said, you should change the classic_big_avatar_cell macro. The idea is to add a line like this:
<n.avatar_label condition="[n.owner.is_in_group group='VIP'/]" label="[b][t]VIP Member[/t][/b]"/>
Here is the full macro with the new line (see line 7):
<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='VIP'/]" label="[b][t]VIP Member[/t][/b]"/>
    <n.avatar_label condition="[n.owner.is_site_admin/]" label="[b][t]Administrator[/t][/b]"/>
    <n.avatar_label condition="[n.owner.is_banned/]" label="[t]Banned User[/t]"/>
    <n.owner.post_count/>
</override_macro>