/* Hide the User Location from their public profile page */
.user-profile-location {
display: none;
}
/* Hide the User Location from their user card */
.user-card .location-and-website .location {
display: none;
}
/* Hide the social media platforms from the lower part of their public profile page */
.instagram, .tik-tok, .facebook, .you-tube, .x-\\(twitter\\), .vimeo {
display: none;
}
以及从用户卡中隐藏:
/* Hide the social media platforms from the lower part of their user card */
.public-user-field__you-tube, .public-user-field__vimeo, .public-user-field__instagram, .public-user-field__x-\\(twitter\\), .public-user-field__facebook, .public-user-field__tik-tok {
display: none;
}