custom/plugins/s360-product-recommendations/src/Resources/views/storefront/page/product-detail/index.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/page/product-detail/index.html.twig' %}
  2. {% block page_product_detail_cross_selling %}
  3.     {# display with base plugin #}
  4.     {% set products = page.getExtension('s360ProductRecommendations') %}
  5.     {% if products %}
  6.         {% sw_include '@Storefront/storefront/element/cms-element-s360-adjustable-productslider.html.twig' 
  7.             with {
  8.                 "element": {
  9.                     "type": "s360-adjustable-productslider",
  10.                     "data": products
  11.                 }
  12.             }
  13.         %}
  14.     {% endif %}
  15.    {{ parent() }}
  16. {% endblock %}