Magento 2 - 如何覆盖块模板

时间:2016-02-08 13:52:51

标签: php magento2 magento-2.0

我试图覆盖

  

供应商\的magento \模块multishipping \视图\前端\模板\结帐\ addresses.phtml

我创建了布局

  

应用\代码\我\ CustomModule \视图\前端\布局\ 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>

和模板

  

应用\代码\我\ CustomModule \视图\前端\模板\结帐\ addresses.phtml

<h1>It works </h1>

它没有用......请帮助我! 感谢。

2 个答案:

答案 0 :(得分:5)

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

答案 1 :(得分:0)

不建议使用<action>指令。您还可以使用:

<referenceBlock name="form.subscribe" template="{Vendor_Module}::newsletter/subscribe.phtml" />