How do I hide the “Web Site” user field from users? Can’t find anything in the settings.
Thanks!
How do I hide the “Web Site” user field from users? Can’t find anything in the settings.
Thanks!
You’ll need to do it with CSS customizations.
Here it is
.control-group .pref-website {
display: none;
}
If needed, here is how to hide it in the user card and the user profile
#user-card .third-row .location-and-website .website-name {
display: none;
}
.user-main .about .details .primary .primary-textual .location-and-website .user-profile-website {
display: none;
}
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.