编程语言
首页 > 编程语言> > php – Magento 2 – 如何覆盖块模板

php – Magento 2 – 如何覆盖块模板

作者:互联网

我试图覆盖

vendor\magento\module-multishipping\view\frontend\templates\checkout\addresses.phtml

我创建了布局

app\code\My\CustomModule\view\frontend\layout\multishipping_checkout_addresses.xml

<?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>
        <referenceContainer name="content">
            <block class="Magento\Multishipping\Block\Checkout\Addresses" name="checkout_addresses" template="My_CustomModule::checkout/addresses.phtml" cacheable="false">
            </block>
        </referenceContainer>
    </body>
</page>

和模板

app\code\My\CustomModule\view\frontend\templates\checkout\addresses.phtml

<h1>It works </h1>

它不起作用……请帮帮我!
谢谢.

解决方法:

<referenceBlock name='copyright'>
    <action method='setTemplate'>
        <argument name='template' xsi:type='string'>Dfr_Backend::page/copyright.phtml</argument>
    </action>
</referenceBlock>

标签:php,magento2,magento-2-0
来源: https://codeday.me/bug/20190608/1201488.html