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 Me gusta

You can use CSS to do it.

1 me gusta

Ejemplos de CSS:

// Ocultar botones de tema
// Asignar
#topic-footer-button-assign {
	display: none;
}

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

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

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

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

o

// Ocultar botones principales a la vez pero Seguir
#topic-footer-buttons .topic-footer-main-buttons {
	display: none;
}

o

// Ocultar todos los botones, incluido Seguir
#topic-footer-buttons {
	display: none;
}

Para aplicar este código a temas externos, necesitas hacer un fork del repositorio original de Github, reinstalar el tema usando la URL de tu repositorio, aplicar este código a tu repositorio (desktop.scss, etc.), confirmar los cambios y actualizar el tema en Discourse.

2 Me gusta