custom/plugins/S360Experts/src/Resources/views/storefront/page/product-detail/buy-widget.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/page/product-detail/buy-widget.html.twig' %}
  2. {% block page_product_detail_buy_inner %}
  3.     {{ parent() }}
  4.     {% block s360_experts_buy_widget %}
  5.         {{ ""|trans|sw_sanitize }}
  6.         {% set config = config('S360Experts.config') %}
  7.         {% if config.showOnDetail and config.whereOnDetail is same as('buybox') and page.product.hasExtension('s360_experts') %}
  8.             <div class="s360-experts is--detail is--buy-widget">
  9.                 <h4 class="s360-experts-headline">
  10.                     {{ "s360-experts.headline"|trans|sw_sanitize }}
  11.                 </h4>
  12.                 <div class="s360-experts-inner">
  13.                     {% if page.product.getExtension('s360_experts_images').all is not empty %}
  14.                         {% set s360ExpertsImages = searchMedia(page.product.getExtension('s360_experts_images').all, context.context) %}
  15.                     {% endif %}
  16.                     {% for expert in page.product.getExtension('s360_experts') %}
  17.                         {% sw_include '@Storefront/solution360/s360experts/product-detail-buy-widget.html.twig' %}
  18.                     {% endfor %}
  19.                 </div>
  20.             </div>
  21.         {% endif %}
  22.     {% endblock %}
  23. {% endblock %}