Remove Home tab from navigation in Volto

What's the right way to hide the home tab with Volto?

Like in Plone Classic, remove it from the actions.

<?xml version="1.0" encoding="utf-8"?>
<object xmlns:i18n="http://xml.zope.org/namespaces/i18n"
        meta_type="Plone Actions Tool"
        name="portal_actions"
>
  <action-provider name="portal_actions" />
  <object meta_type="CMF Action Category"
          name="portal_tabs"
  >
    <object meta_type="CMF Action"
            name="index_html"
            i18n:domain="plone"
    >
      <property name="visible">False</property>
    </object>
  </object>

Fair enough!
because

#navigation > div > ul > li:nth-child(1) > button {
    display: none;
}

wasn't feeling right.

1 Like