XenForo Hide image option for Users

CR LEAKS

Administrators
Joined
Mar 25, 2022
Messages
1,485
Credits
28,051
Create a custom user field
Edit the PAGE_CONTAINER template:



HTML:
<xf:if is="$xf.visitor.Profile.custom_fields.hideImages">
<xf:css>
.bbImageWrapper
{
display: none;
}
</xf:css>
</xf:if>
 
Back
Top Bottom