C4SH3R 0 Posted January 24, 2019 Share Posted January 24, 2019 (edited) Hello,I would like to know how i can make it that if people mention someone like @Fluxious. it would appear like this:With the right group formatting. But without the flag and the timezone ofc. So just the right group formatting color. For me it does this: Edited January 24, 2019 by C4SH3R Link to comment Share on other sites More sharing options...
#N3CK 24 Posted February 9, 2019 Share Posted February 9, 2019 go to ACP > Themes > click edit HTML & CSS on template that you are using, find template mentionRow find: <li class='ipsMenu_item ipsCursor_pointer' data-mentionhref='{$member->url()}' data-mentionid='{$member->member_id}' data-mentionhover='{$member->url()->setQueryString('do', 'hovercard')}'> <a> <img src='{$member->photo}' alt='' class='ipsUserPhoto ipsUserPhoto_tiny'> <span class="ipsPad_half" data-role='mentionname'>{$member->name}</span> </a> </li> and replace it with: <li class='ipsMenu_item ipsCursor_pointer' data-mentionhref='{$member->url()}' data-mentionid='{$member->member_id}' data-mentionhover='{$member->url()->setQueryString('do', 'hovercard')}'> <a> <img src='{$member->photo}' alt='' class='ipsUserPhoto ipsUserPhoto_tiny'> <span class="ipsPad_half" data-role='mentionname'>{$member->group['prefix']|raw}{$member->name}{$member->group['suffix']|raw}</span> </a> </li> No matter what they say, if you want something, take it. Link to comment Share on other sites More sharing options...
C4SH3R 0 Posted February 12, 2019 Author Share Posted February 12, 2019 Thanks, the only thing i noew want removed is the "@" symbol that is shows..https://i.imgur.com/QbYJ46v.png[/img] Thanks so much!! the only thing i noew want removed is the "@" symbol that is shows.. Link to comment Share on other sites More sharing options...
Recommended Posts