마 젠토 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'),

그리고 줄 번호를 찾으십시오. 65

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

위의 코드를 제거하십시오.


그게 당신을 위해 일하고 있습니까?
hweb87
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.