custom/plugins/FourtwosixThemeExtension/src/Resources/views/storefront/component/product/listing.html.twig line 1

Open in your IDE?
  1. {%  sw_extends '@Storefront/storefront/component/product/listing.html.twig' %}
  2. {% block element_product_listing_col %}
  3.     {# @fourtwosix-edit: Change the behaviour of the setting because of sidebar in PLP #}
  4.     {% set listingColumns = listingColumns|replace({"col-xl-4" : "col-xl-3"}) %}
  5.     {% for product in searchResult %}
  6.         <div class="cms-listing-col {{ listingColumns }}">
  7.             {% block element_product_listing_box %}
  8.                 {% sw_include '@Storefront/storefront/component/product/card/box.html.twig' with {
  9.                     'layout': boxLayout,
  10.                     'displayMode': displayMode
  11.                 } %}
  12.             {% endblock %}
  13.         </div>
  14.     {% endfor %}
  15. {% endblock %}