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.
Примеры CSS:
// Скрыть кнопки темы
// Назначить
#topic-footer-button-assign {
display: none;
}
// Отложить
#topic-footer-button-defer {
display: none;
}
// Пожаловаться
#topic-footer-button-flag {
display: none;
}
// Закладка
#topic-footer-button-bookmark {
display: none;
}
// Поделиться
#topic-footer-button-share-and-invite {
display: none;
}
или
// Скрыть основные кнопки сразу, кроме «Подписаться»
#topic-footer-buttons .topic-footer-main-buttons {
display: none;
}
или
// Скрыть все кнопки, включая «Подписаться»
#topic-footer-buttons {
display: none;
}
Чтобы применить этот код к внешним темам, вам нужно сделать форк оригинального репозитория на GitHub, переустановить тему, используя URL вашего репозитория, внести этот код в ваш репозиторий (например, в файл desktop.scss), закоммитить изменения и обновить тему в Discourse.