vendor/store.shopware.com/dreiscset/src/Resources/views/storefront/component/product/card/price-unit.html.twig line 1

Open in your IDE?
  1. {# @var product \Shopware\Core\Content\Product\SalesChannel\SalesChannelProductEntity #}
  2. {% sw_extends '@Storefront/storefront/component/product/card/price-unit.html.twig' %}
  3. {% block component_product_box_price %}
  4.     {% if product.extensions.dreiscSetListingPriceDisplayConfig and product.extensions.dreiscSetListingPriceDisplayConfig.addFromString %}
  5.         {% set displayFrom = true %}
  6.     {% endif %}
  7.     {% if product.extensions.dreiscSetListingPriceDisplayConfig and product.extensions.dreiscSetListingPriceDisplayConfig.hidePrice %}
  8.         {% block dreisc_set__no_price_placeholder %}
  9.             <div class="product-price-wrapper">
  10.                 <div class="product-cheapest-price"></div>
  11.                 <span class="product-price">&nbsp;</span>
  12.             </div>
  13.         {% endblock %}
  14.     {% else %}
  15.         {{ parent() }}
  16.     {% endif %}
  17. {% endblock %}