Remove Follower/Post Count? | Community
Skip to main content

Remove Follower/Post Count?

  • May 6, 2021
  • 3 replies
  • 0 views

Christopher30

Hello,

Is there a way to remove the number of followers and how many posts are in a given topic on the home page? 

3 replies

Marie-Cathrine

Hi Christopher,

You can remove the counts by removing this piece of code from the community_topic_list_page.hbs file in the code editor for the theme:

<ul class="meta-group">
<li class="meta-data">{{t 'post_count' count=post_count}}</li>
<li class="meta-data">{{t 'follower_count' count=follower_count}}</li>
</ul>

To easily find the code, do a search for:

<ul class="meta-group">

#helpsome regards,
Marie-Cathrine Sørensen
Developer @ helphouse.io


Christopher30

That worked! Thank you.


Ifra
  • June 7, 2021

Also can be done:

.topics .meta-group{display:none;}

 

Thanks