Last active
August 22, 2019 06:29
-
-
Save veritstudio/0ec6a023e6a276beb1ae2840dd3a8d89 to your computer and use it in GitHub Desktop.
Remove breadcrumbs from CMS Pages - Magento 2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd"> | |
<body> | |
<referenceBlock name="breadcrumbs" remove="true" /> | |
</body> | |
</page> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<body> | |
<referenceBlock name="page.main.title" remove="true" /> | |
<referenceBlock name="breadcrumbs" remove="true" /> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment