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

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/component/product/card/price-unit.html.twig' %}
  2. {% block component_product_box_price_unit %}
  3.     {# ... @zenit add if statement #}
  4.     {% if theme_config('zen-product-listing-card-product-price-unit') is not same as (false) %}
  5.         {{ parent() }}
  6.     {% endif %}
  7. {% endblock %}
  8. {# TODO: @zenit check on sw update #}
  9. {% block component_product_box_price %}
  10.     <div class="product-price-wrapper">
  11.         {% set price = real %}
  12.         {% set isListPrice = price.listPrice.percentage > 0 %}
  13.         {% set isRegulationPrice = price.regulationPrice != null %}
  14.         {# ... @zenit add if statement #}
  15.         {% if theme_config('zen-product-listing-card-cheapest-price') is not same as (false) %}
  16.             <div class="product-cheapest-price{% if isListPrice and isRegulationPrice and not displayFrom and not displayFromVariants %} with-list-price{% endif %}{% if isRegulationPrice and not displayFrom and displayFromVariants %} with-regulation-price{% endif %}{% if displayFrom and isRegulationPrice %} with-from-price{% endif %}">
  17.                 {% if cheapest.unitPrice != real.unitPrice %}
  18.                     <div>{{ "listing.cheapestPriceLabel"|trans|sw_sanitize }}<span class="product-cheapest-price-price"> {{ cheapest.unitPrice|currency }}{{ "general.star"|trans|sw_sanitize }}</span></div>
  19.                 {% endif %}
  20.             </div>
  21.         {% endif %}
  22.         {% if displayFrom or (displayParent and displayFromVariants) %}
  23.             {{ "listing.listingTextFrom"|trans|sw_sanitize }}
  24.         {% endif %}
  25.         <span class="product-price{% if isListPrice and not displayFrom and not displayFromVariants %} with-list-price{% endif %}">
  26.             {{ price.unitPrice|currency }}{{ "general.star"|trans|sw_sanitize }}
  27.             {% if isListPrice and not displayFrom and not displayFromVariants %}
  28.                 {% set afterListPriceSnippetExists = "listing.afterListPrice"|trans|length > 0 %}
  29.                 {% set beforeListPriceSnippetExists = "listing.beforeListPrice"|trans|length > 0 %}
  30.                 {% set hideStrikeTrough = beforeListPriceSnippetExists or afterListPriceSnippetExists %}
  31.                 <span class="list-price{% if hideStrikeTrough %} list-price-no-line-through{% endif %}">
  32.                     {% if beforeListPriceSnippetExists %}{{ "listing.beforeListPrice"|trans|trim|sw_sanitize }}{% endif %}
  33.                     <span class="list-price-price">{{ price.listPrice.price|currency }}{{ "general.star"|trans|sw_sanitize }}</span>
  34.                     {% if afterListPriceSnippetExists %}{{ "listing.afterListPrice"|trans|trim|sw_sanitize }}{% endif %}
  35.                     {# ... @zenit add if statement #}
  36.                     {% set pricePercentage = theme_config('zen-product-listing-card-list-price-percentage') ?: 'default' %}
  37.                     {% if pricePercentage is same as ('default') %}
  38.                         <span class="list-price-percentage">{{ "detail.listPricePercentage"|trans({'%price%': price.listPrice.percentage })|sw_sanitize }}</span>
  39.                     {% endif %}
  40.                 </span>
  41.             {% endif %}
  42.         </span>
  43.         {% if isRegulationPrice %}
  44.             <span class="product-price with-regulation-price">
  45.                 {% if isListPrice %}
  46.                     {# ... @zenit remove </br> if there is no price percentage, add brackets #}
  47.                     {% set pricePercentage = theme_config('zen-product-listing-card-list-price-percentage') ?: 'default' %}
  48.                     {% if pricePercentage is same as ('default') %}
  49.                         <br/>
  50.                     {% endif %}
  51.                 {% endif %}
  52.                 <span class="regulation-price">({{ "general.listPricePreviously"|trans({'%price%': price.regulationPrice.price|currency }) }}{{ "general.star"|trans|sw_sanitize }})</span>
  53.             </span>
  54.         {% endif %}
  55.     </div>
  56. {% endblock %}