Bio, Standort und Profilbild deaktivieren

sicher, also anstelle von diesem:

#user-card .location, // user card
.user-main .user-profile-location, // profile page
.control-group.pref-location {  // user preference
  display: none;
}

würdest du das tun:

#user-card .location-and-website, // user card
.user-main .location-and-website, // profile page
.control-group.pref-location,  // user preferences
.control-group.pref-website { 
  display: none;
}

Wir haben weitere Informationen darüber, wie man CSS-Änderungen wie diese vornimmt, in einem Leitfaden hier: Making custom CSS changes on your site

3 „Gefällt mir“