XF 1.3 Hiding report button

sinful

Member
Hi,

On each post in a thread there is this "Report" button:

2014-07-28 10.03.38 am.webp

I wish to hide it completely for every post. What is the best way to hide/remove this button?

Thanks!
 
you can add this css to EXTRA.CSS so easy to hide it

Code:
a.OverlayTrigger.item.control.report {
display: none;
}

No need for custom CSS. Just set the report content user group permission to Not Set (No):

0fQj9U2.png
 
Thanks for the comments, appreciate it. I think the plus point for adding it under extra.css is pegging this customization to your theme.

E.g. when u customize another theme, you may forget that you have removed "Report" permission under user permissions.
 
Top Bottom