tshenry
(Taylor)
22 Junio, 2023 08:29
4
Me adelanté y agregué un punto de conexión de plugin para que sea más fácil:
main ← post-count-outlet
opened 12:24AM - 22 Jun 23 UTC
Introduces a new above-latest-topic-list-item-post-count outlet, providing a cle… an way to add other useful elements to the topic-stats section of the latest-topic-list-item template.
One example use case is replacing the post count with a view count as requested in [this Meta topic](https://meta.discourse.org/t/show-views-instead-of-replies/187146):
<img width="568" alt="Screenshot 2023-06-21 at 5 21 31 PM" src="https://github.com/discourse/discourse/assets/22733864/912b77ed-887e-4402-a50d-0079ef61666d">
Si agregas algo como esto a la sección Head de un componente de tema, verás que agrega las vistas. Puedes agregar HTML adicional si es necesario y estilizarlo a tu gusto
<script type="text/x-handlebars" data-template-name="/connectors/above-latest-topic-list-item-post-count/views-count">
{{topic.views}} vistas
</script>
2 Me gusta