I'm using Magento 2.2, and I'm wondering, how would I remove the header and footer ONLY from the home page? I use various stores, so the home page just acts as a portal to each store.
I explicitly only want to remove the header and footer from the home page. They should appear on all other pages.
Thank you.
The beste way of doing this is to remove the header and footer from your XML-Rendering file. If you only hide it with CSS then this section will be rendered and need some resources. You can try something like this:
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceBlock name="header.container" remove="true" />
<referenceBlock name="footer.container" remove="true" />
</body>
</page>