Magento 2.1: วิธีลบอาร์กิวเมนต์และ / หรือรายการอาร์กิวเมนต์ออกจากบล็อก?


9

ฉันต้องลบราคา "จาก - ถึง" ในหน้าผลิตภัณฑ์ชุด

ดังนั้นคำถามคือวิธีการลบรายการจากการโต้แย้ง?

บล็อกถูกสร้างขึ้นใน

magento2 / ผู้ขาย / วีโอไอพี / โมดูลกำ / view / ฐาน / รูปแบบ / 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'),

และค้นหาหมายเลขบรรทัด 65

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

ลบรหัสข้างต้น


นั่นทำงานให้คุณใช่ไหม
hweb87
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.