Magento 2.1: làm thế nào để loại bỏ đối số và / hoặc mục đối số khỏi khối?


9

Tôi cần xóa giá "từ - đến" trong trang sản phẩm đi kèm.

Vì vậy, câu hỏi là làm thế nào để loại bỏ mục khỏi đối số?

Khối được tạo trong

magento2 / nhà cung cấp / magento / mô-đun / view / cơ sở / 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>

khả năng khác là nếu tôi có thể ghi đè lỗ catalog_product_prices.xml

Tôi đã thử sử dụng phương thức http://devdocs.magento.com/guides/v2.1/frontend-dev-guide/layouts/layout-override.html


kiểm tra điều này. stackoverflow.com/a/41296109/5870985
Vish

Câu trả lời:


2

Bạn có thể ẩn từđể nhãn sử dụng CSS

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

**

HOẶC LÀ

**

Sao chép tập tin dưới đây trong chủ đề của bạn

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

Tìm dòng số. 47

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

VÀ Tìm dòng số. 65

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

Xóa mã trên.


Đó có phải là làm việc cho bạn?
hweb87
Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.