Magento 2.1: bağımsız değişken ve / veya bağımsız değişken öğesi bloktan nasıl kaldırılır?


9

Paket ürün sayfasındaki "-" fiyatını kaldırmam gerekiyor.

Öyleyse soru, öğeyi argümandan nasıl kaldıracağım?

Blok içinde oluşturuldu

magento2 / satıcı / magento / modülü demet / görünüşüdür / baz / düzeni / 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>

başka bir olasılık, eğer catalog_product_prices.xml deliğini geçersiz kılabilirsem

Http://devdocs.magento.com/guides/v2.1/frontend-dev-guide/layouts/layout-override.html yöntemini kullanmayı denedim


Yanıtlar:


2

Sen gizleyebilirsiniz gelen ve hiç CSS kullanarak etiket

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

**

VEYA

**

Temanızdaki dosyanın altına kopyalayın

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

Satır no. 47

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

VE Satır numarasını bulun. 65

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

Yukarıdaki kodu kaldırın.


Bu senin için çalışıyor mu?
hweb87
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.