모바일 홈 페이지에서 카테고리 내 주제 숨기는 방법?

As shown in the snap below, I don’t want to show the latest topics in categories of mobile home page. How can I achieve this?

I’ve tried to hide it through CSS, but it is hiding not just in home page, but in other pages too.

In the customize > themes > mobile > CSS try this:

.category-topic-link,
.clearfix.category-topics-count {
    display: none;
}

This is taking away the 3 topics shown below the sub categories in the category page too. I’ve tried this already as mentioned in the original post. I want the topics to be hidden only in the home page categories.

이 문제에 대한 업데이트가 있나요?
저도 같은 문제를 겪고 있어서요.

안녕하세요 :wave:

모바일 / CSS

.navigation-categories {
  .category-topic-link {
    display: none;
  }
}