custom/plugins/SMTheme/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_wishlist_action %}{% endblock %}
  3. {% block component_product_box_action %}
  4.     <div class="clearfix"></div>
  5.     <div class="d-flex mt-2">
  6.         <div class="flex-grow-1">
  7.             {% sw_include '@Storefront/storefront/component/product/card/action.html.twig' %}
  8.         </div>
  9.         <div>
  10.             {% if config('core.cart.wishlistEnabled') %}
  11.                     {% sw_include '@Storefront/storefront/component/product/card/wishlist.html.twig' with {
  12.                         appearance: 'circle',
  13.                         productId: id
  14.                     } %}
  15.             {% endif %}
  16.         </div>
  17.     </div>
  18. {% endblock %}