Magento 2.1:ブロックから引数や引数項目を削除するにはどうすればよいですか?


9

バンドル商品ページで「から-から」の価格を削除する必要があります。

だから問題は引数からアイテムを削除する方法ですか?

ブロックが作成されます

magento2 / vendor / magento / module-bundle / view / base / layout / catalog_product_prices.xml

<layout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/layout_generic.xsd">
<referenceBlock name="render.product.prices">
    <arguments>
        <argument name="bundle" xsi:type="array">
            <item name="prices" xsi:type="array">
                <item name="tier_price" xsi:type="array">
                    <item name="render_template" xsi:type="string">Magento_Bundle::product/price/tier_prices.phtml</item>
                </item>

                <!-- start: this should be removed -->
                <item name="final_price" xsi:type="array">
                    <item name="render_class" xsi:type="string">Magento\Bundle\Pricing\Render\FinalPriceBox</item>
                    <item name="render_template" xsi:type="string">Magento_Bundle::product/price/final_price.phtml</item>
                </item>
                <!-- end: this should be removed -->

                <item name="bundle_option" xsi:type="array">
                    <item name="amount_render_template" xsi:type="string">Magento_Bundle::product/price/selection/amount.phtml</item>
                </item>
            </item>
        </argument>
    </arguments>
</referenceBlock>

他の可能性は、もし私が穴catalog_product_prices.xmlを上書きできるなら

メソッドhttp://devdocs.magento.com/guides/v2.1/frontend-dev-guide/layouts/layout-override.htmlを使用してみました


これをチェックして。stackoverflow.com/a/41296109/5870985
Vish

回答:


2

CSSを使用してラベルを非表示にたりラベルを付けたりできます

.page-product-bundle .product-info-price .price-label {
    display: none;
}

**

または

**

以下のファイルをテーマにコピーします

/vendor/magento/module-bundle/view/base/templates/product/price/final_price.phtml

行番号を検索します。47

'display_label'     => __('From'),

AND行を検索します。65

'display_label'     => __('To'),

上記のコードを削除します。


それはあなたのために働いていますか?
hweb87
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.