메인 페이지에서 카테고리 설명을 제거하되, 개별 카테고리 페이지에서는 유지하는 방법?

Under admin > settings, you can search for a setting called desktop category page style

Some custom CSS should do it. If you go to admin > customize > themes and edit CSS/HTML… adding this to the common section should do it:

.categories-and-latest .category-description {
  display: none;
} 

This guide may also help Making custom CSS changes on your site