custom/plugins/KsGeutherTheme/src/Resources/views/storefront/component/product/card/box-standard.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/component/product/card/box-standard.html.twig' %}
  2. {% block component_product_box %}
  3.     {% if product and product.KsBestVariant %}
  4.         {% set product = product.KsBestVariant %}
  5.     {% endif %}
  6.     {{ parent() }}
  7. {% endblock %}
  8. {% block component_product_box_description %}
  9.     {% set ListUSP1 = product.translated.customFields.migration_TestConnection_product_attr4 %}
  10.     {% set ListUSP2 = product.translated.customFields.migration_TestConnection_product_attr5 %}
  11.     {% set ListUSP3 = product.translated.customFields.migration_TestConnection_product_attr6 %}
  12.     {% if ListUSP1 or ListUSP2 or ListUSP3 %}
  13.         <div class="product-features">
  14.             <ul>
  15.                 {% if ListUSP1 %}
  16.                     <li>{{ ListUSP1|raw }}</li>
  17.                 {% endif %}
  18.                 {% if ListUSP2 %}
  19.                     <li>{{ ListUSP2|raw }}</li>
  20.                 {% endif %}
  21.                 
  22.                 {% if ListUSP3 %}
  23.                     <li>{{ ListUSP3 }}</li>
  24.                 {% endif %}
  25.             <ul>
  26.         </div>
  27.         
  28.         {% block component_product_box_description_maxia_listing_variants %}
  29.             {{ parent() }}
  30.         {% endblock %}
  31.     {% else %}
  32.         {{ parent() }}
  33.     {% endif %}
  34. {% endblock %}
  35. {% block component_product_box_price %}
  36.     {{ parent() }}
  37.     <div class="product-detail-delivery-information">
  38.         {% sw_include '@Storefront/storefront/component/delivery-information.html.twig' %}
  39.     </div>
  40. {% endblock %}