성공 페이지에서 제목 블록을 제거한다고 가정 해 봅시다. 먼저 우리의 경우 특정 페이지를 담당하는 XML을 찾아야합니다.vendor/magento/module-checkout/view/frontend/layout/checkout_onepage_success.xml
그리고이 파일에는 다음과 같은 내용이 있습니다.
<?xml version="1.0"?>
<!--
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<head>
<title>Success Page</title>
</head>
<body>
<referenceBlock name="page.main.title">
<block class="Magento\Checkout\Block\Onepage\Success" name="checkout.success.print.button" template="Magento_Checkout::button.phtml"/>
<action method="setPageTitle">
<argument translate="true" name="title" xsi:type="string">Thank you for your purchase!</argument>
</action>
</referenceBlock>
<referenceContainer name="content">
<block class="Magento\Checkout\Block\Onepage\Success" name="checkout.success" template="Magento_Checkout::success.phtml" cacheable="false">
<container name="order.success.additional.info" label="Order Success Additional Info"/>
</block>
<block class="Magento\Checkout\Block\Registration" name="checkout.registration" template="Magento_Checkout::registration.phtml" cacheable="false"/>
</referenceContainer>
</body>
</page>
이제 테마에서이 xml을 확장해야하며 app/design/frontend/.../.../Magento_Checkout/layout/checkout_onepage_success.xml
내부에서 제거 page.main.title
하고 추가 해야하는 블록을 참조하십시오 remove="true"
.
<?xml version="1.0"?>
<!--
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<head>
</head>
<body>
<referenceBlock name="page.main.title" remove="true" />
</body>
</page>
모든 cms 페이지에서 특정 블록을 제거 vendor/magento/module-theme/view/frontend/layout/default.xml
하려면 테마 폴더 의 기본 xml 을 다음 app/design/frontend/.../.../Magento_Theme/layout/default.xml
과 같이 확장하면됩니다 .
<?xml version="1.0"?>
<!--
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceBlock name="page.main.title" remove="true" />
</body>
</page>
<remove />
-tag를 사용 한다는 것이 이상 합니다 . 설명서에 오류가 있습니까?