How to disable topic excerpts in category page


How can i disable that part?

1 Like

That is only displayed for pinned posts, unpinning the post would hide the excerpt you are referring to. Another way would be to use CSS and HTML to hide it. Take a look at this theme component Topic List Excerpts Theme Component for ideas on how you could implement this.

4 Likes

I find the css code and edited for my need. Dropping it here if someone needs too.

.topic-list .posts, .topic-list .posters, .topic-list .activity, .main-link .topic-excerpt, .category-list .topics, .topic-map, .small-action.onscreen-post, .post-info.edits{
display:none;
}

1 Like