Magento 2.1: come rimuovere argomento e / o argomento dal blocco?


9

Devo rimuovere il prezzo "da - a" nella pagina del prodotto in bundle.

Quindi la domanda è: come rimuovere l'oggetto dall'argomento?

Il blocco è stato creato in

magento2 / vendor / magento / modulo fascio / 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>

altra possibilità è che se potessi scavalcare il foro catalog_product_prices.xml

Ho provato a utilizzare il metodo http://devdocs.magento.com/guides/v2.1/frontend-dev-guide/layouts/layout-override.html


Risposte:


2

Puoi nasconderti da e per etichettare usando CSS

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

**

O

**

Copia sotto il file nel tuo tema

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

Trova la linea n. 47

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

E trova la linea n. 65

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

Rimuovi il codice sopra.


Funziona per te?
hweb87,
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.