custom/plugins/SchilderSysteme/src/Resources/views/storefront/component/product/card/price-unit.html.twig line 1

Open in your IDE?
  1. {% extends "@Storefront/storefront/component/product/card/price-unit.html.twig" %}
  2. {% block component_product_box_price %}
  3.     <div class="product-price-container d-flex">
  4.         {% set price = real %}
  5.         {% if product.customFields.price_on_request_six_group!=1 %}
  6.             {% if displayFrom %}
  7.                 <span class="text-from">
  8.             {{ "listing.listingTextFrom"|trans|sw_sanitize }}
  9.                 </span>
  10.             {% endif %}
  11.             <span class="product-price{% if isListPrice and not displayFrom %} with-list-price{% endif %}">
  12.                     {{ price.unitPrice|currency }}{{ "general.star"|trans|sw_sanitize }}
  13.                 </span>
  14.         {% else %}
  15.             <span class="product-price">Preis auf Anfrage</span>
  16.         {% endif %}
  17.     </div>
  18. {% endblock %}