Hey guys, I would like to know if anyone has ever tried to show Views instead of the number of replies in the homepage.
I was able to hide the number of replies using CSS, but I’m having a hard time trying to show the number of Views in that place.
Any ideas?
Thanks!
إعجاب واحد (1)
أبحث عن هذه الميزة تحديدًا. هل وجدت أي حل لهذا؟ @Tiago_Amaral
هل هناك أي تحديثات @Discourse ؟
إعجابَين (2)
Lilly
(Lillian Louis)
22 يونيو 2023، 12:44ص
3
قد أحاول القيام بذلك في الأيام القليلة القادمة إذا كان لدي وقت. أنا أعمل على مكون سمة يقوم بشيء مشابه.
3 إعجابات
tshenry
(Taylor)
22 يونيو 2023، 8:29ص
4
لقد قمت بإضافة منفذ إضافي لجعله سهلاً للغاية:
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">
إذا أضفت شيئًا كهذا إلى قسم الرأس لمكون سمة، فسترى أنه يضيف طرق العرض. يمكنك إضافة HTML إضافي إذا لزم الأمر وتنسيقه حسب الرغبة
<script type="text/x-handlebars" data-template-name="/connectors/above-latest-topic-list-item-post-count/views-count">
{{topic.views}} views
</script>
إعجابَين (2)
Lilly
(Lillian Louis)
24 يونيو 2023، 4:18ص
6
حسنًا، لقد قمت بتضمين هذه الوظيفة في مكون سمة يحتوي على إعدادات للتحكم في الإحصائيات الثلاثة في قائمة الموضوعات في صفحة الفئة الرئيسية - العدد الإجمالي للمشاهدات، وعدد الردود، والوقت منذ آخر نشاط.
إعجابَين (2)