XenForo [JoyFreak] Disable Member Tooltip

JoyFreak

Administrator
Live example: Gaming Forum

Description
This guide will run you through on how to disable member tooltip the efficient way without having to edit more than one template.

Guide
  1. Go to Admin CP > Appearance > Templates > Search: helper_js_global

Find:
Code:
<!--XF:JS-->

Paste below:
Code:
<xf:js>
    XF.MemberTooltip = XF.Element.newHandler({
    init: function()
        {} });
    XF.Element.register('member-tooltip', 'XF.MemberTooltip');
</xf:js>

Live example: Gaming Forum
 
What is the advantage of disabling member tooltip?
For privacy purposes. When you set permissions to “No” for the “View member profiles” permission, you are still able to view the member tooltips which has some info that you might want to keep private as well so disabling the member tooltip will achieve it.
 
Back
Top