gpt4 book ai didi

javascript - Magento 2,如何删除发货步骤中的订单摘要?

转载 作者:行者123 更新时间:2023-12-03 00:42:19 25 4
gpt4 key购买 nike

我正在尝试自定义 Magento 2 的结账。目前,我想更改“运输”步骤的外观。谁能给我提示如何删除侧边栏(包括订单摘要)?

它应该只在“付款”步骤中可见,而不是在“运输”中可见。

最佳答案

Magento 的文档解释了如何在此处禁用某个项目:https://devdocs.magento.com/guides/v2.4/howdoi/checkout/checkout_customize.html#disable

删除摘要(在本例中为移动设备)非常简单,只需将以下内容添加到主题的 checkout_index_index.xml

<item name="estimation" xsi:type="array">
<item name="componentDisabled" xsi:type="boolean">true</item>
</item>

checkout_index_index.xml 应该看起来像这样

<?xml version="1.0" encoding="utf-8"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="checkout" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceBlock name="checkout.root">
<arguments>
<argument name="jsLayout" xsi:type="array">
<item name="components" xsi:type="array">
<item name="checkout" xsi:type="array">
<item name="children" xsi:type="array">
<item name="estimation" xsi:type="array">
<item name="componentDisabled" xsi:type="boolean">true</item>
</item>
</item>
</item>
</item>
</argument>
</arguments>
</referenceBlock>
</body>
</page>

关于javascript - Magento 2,如何删除发货步骤中的订单摘要?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53397325/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com