Join our Facebook Group
Sngine by ScriptsTribe! The only group where you will actually find tutorials and free stuff once in a while
Join

Foren

The great place to discuss topics with other users

Add Admin/Moderator Badge to user profile

'
Join the Conversation Antwort veröffentlichen
Jane Marcia
Admin
Joined: 2025-05-17 02:14:16
2026-01-24 20:08:25

Adding user group badge is very simple,

open content/themes/default/templates/profile.ptl

Look for

{if $profile['custom_user_group']}
            <a class="badge bg-primary">{__($profile['custom_user_group']['user_group_title'])}</a>
          {/if}

After that add

{if $profile['user_group'] == 1}
    <span class="badge bg-danger" data-bs-toggle="tooltip" title="Admin">Admin</span>
  {elseif $profile['user_group'] == 2}
    <span class="badge bg-warning" data-bs-toggle="tooltip" title="Moderator">Moderator</span>
  {/if}

See Pictures 

 

You are welcome...