How can i disable categories on home page?

You can hide that dropdown with a little CSS, if that’s what you’re looking to do

.category-breadcrumb .category-drop {
  display: none;
}

Check out How to make CSS changes on your site

4 Likes