Display Like Counts on Home Page Topic List

Use this script, add it in admin/customize/css_html in the </body> tab

<script>
var TopicListComponent = require('discourse/components/topic-list').default;
TopicListComponent.reopen({
    showLikes: true
});
</script>

It shows the column Like in your homepage between the columns Replies and Views.

11 Likes