XF 1.5 How do I remove the "Likes Received" counter on profiles?

Empty

Active member
We like using the likes system to allow users to give feedback, but feel that having a counter of how many likes a person has gotten could lead to it becoming a popularity contest -- which is something we want to avoid.

I've tried just about everything I could think of and couldn't figure it out.

Any help would be greatly appreciated.
 
An add-on is not needed to hide it.

Template: member_view

Code:
<dl><dt>{xen:phrase likes_received}:</dt>
                    <dd>{xen:number $user.like_count}</dd></dl>

Either remove it or comment it out, like so:

Rich (BB code):
<xen:comment><dl><dt>{xen:phrase likes_received}:</dt>
                    <dd>{xen:number $user.like_count}</dd></dl></xen:comment>
 
An add-on is not needed to hide it.

Template: member_view

Code:
<dl><dt>{xen:phrase likes_received}:</dt>
                    <dd>{xen:number $user.like_count}</dd></dl>

Either remove it or comment it out, like so:

Rich (BB code):
<xen:comment><dl><dt>{xen:phrase likes_received}:</dt>
                    <dd>{xen:number $user.like_count}</dd></dl></xen:comment>

This worked! Thank you so much.
 
Top Bottom