We have Customizable User Settings component in our community. I want to remove the Location section which contains Locale, Language fields from User object. I've tried check FLS for the fields, but of course it's not possible for the standard fields. Tried checking profiles and also field accessibility, but no luck there. Can anyone help me figure out how to remove the fields from the component?
1 Answer
Seems the visibility of Location section cant be changed by the config in the experience builder, then we can only do is either override the css or you replace with your own custom component (you provide the functions to change email addr or change password) on User Settings page
For CSS overrides(this works for me in my partner portal, you may check the html elements from browser console to accurately target it):
fieldset[class="row dropdownvisibility locationSection"] { display: none; } - 1That works. Thank you!Aruna Sree Tummuri– Aruna Sree Tummuri2025-05-26 07:37:42 +00:00Commented May 26 at 7:37

