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?
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?
You can use CSS to do it.
Exemples CSS :
// Masquer les boutons de sujet
// Assigner
#topic-footer-button-assign {
display: none;
}
// Reporter
#topic-footer-button-defer {
display: none;
}
// Marquer
#topic-footer-button-flag {
display: none;
}
// Marque-page
#topic-footer-button-bookmark {
display: none;
}
// Partager
#topic-footer-button-share-and-invite {
display: none;
}
ou
// Masquer les boutons principaux en une fois mais Suivre
#topic-footer-buttons .topic-footer-main-buttons {
display: none;
}
ou
// Masquer tous les boutons, y compris Suivre
#topic-footer-buttons {
display: none;
}
Pour appliquer ce code aux thèmes externes, vous devez forker le dépôt Github original, réinstaller le thème en utilisant l’URL de votre dépôt, appliquer ce code à votre dépôt (desktop.scss etc.), valider les modifications et mettre à jour le thème dans Discourse.