Hiding post buttons

Is it possible to control the visibility of the buttons below a topic? I refer specifically to:

I’ve been able to hide the buttons within the post:

Using:

But do similar settings exist for the the buttons identified above?

2 „Gefällt mir“

You can use CSS to do it.

1 „Gefällt mir“

CSS-Beispiele:

// Themen-Schaltflächen ausblenden
// Zuweisen
#topic-footer-button-assign {
	display: none;
}

// Aufschieben
#topic-footer-button-defer {
	display: none;
}

// Markieren
#topic-footer-button-flag {
	display: none;
}

// Lesezeichen
#topic-footer-button-bookmark {
	display: none;
}

// Teilen
#topic-footer-button-share-and-invite {
	display: none;
}

oder

// Hauptschaltflächen auf einmal ausblenden, aber Folgen
#topic-footer-buttons .topic-footer-main-buttons {
	display: none;
}

oder

// Alle Schaltflächen ausblenden, einschließlich Folgen
#topic-footer-buttons {
	display: none;
}

Um diesen Code auf externe Themes anzuwenden, müssen Sie das ursprüngliche Github-Repository forken, das Theme mit Ihrer Repository-URL neu installieren, diesen Code in Ihrem Repository (desktop.scss usw.) anwenden, Änderungen committen und das Theme in Discourse aktualisieren.

2 „Gefällt mir“