Como esconder tópicos de categorias na página inicial móvel?

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.

2 curtidas

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

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

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.

2 curtidas

Houve alguma atualização sobre isso?
Pois estou tendo o mesmo problema

Olá :wave:

Mobile / CSS

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