Jump to content

IPB @Mention / tag


C4SH3R

Recommended Posts

Hello,

I would like to know how i can make it that if people mention someone like @Fluxious. it would appear like this:

eb4de9c1b1219b90aaf88c9be000e5bb.png

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:
72deeb8c04b78c39f10f1d970687a0fc.png

Edited by C4SH3R
Link to comment
Share on other sites

  • 3 weeks later...

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

Thanks, the only thing i noew want removed is the "@" symbol that is shows..

image.png.01d3233db38b21009d9465a8f4f2ecfc.pnghttps://i.imgur.com/QbYJ46v.png[/img]

Thanks so much!!  the only thing i noew want removed is the "@" symbol that is shows..

QbYJ46v.png

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...