custom/plugins/DmSanettaTheme/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_headline %}
  3.     {# remove - @see by-widget.html.twig #}
  4. {% endblock %}
  5. {% block page_product_detail_tabs %}
  6.     {# remove tabs #}
  7. {% endblock %}
  8. {% block page_product_detail_media %}
  9.     <div class="col-lg-7 product-detail-media">
  10.         {% if config('core.cart.wishlistEnabled') %} 
  11.             {% sw_include '@Storefront/storefront/component/product/card/wishlist.html.twig' with {
  12.                 productId: page.product.id
  13.             } %}
  14.         {% endif %}
  15.         {% if page.product.media %}
  16.             {% sw_include '@Storefront/storefront/element/cms-element-image-gallery.html.twig' with {
  17.                 'mediaItems': mediaItems,
  18.                 'zoom': true,
  19.                 'zoomModal': true,
  20.                 'displayMode': 'contain',
  21.                 'gutter': 5,
  22.                 'minHeight': '550px',
  23.                 'navigationArrows': 'inside',
  24.                 'navigationDots': 'inside',
  25.                 'galleryPosition': 'underneath',
  26.                 'isProduct': true,
  27.                 'fallbackImageTitle': page.product.translated.name,
  28.                 'startIndexThumbnails': page.product.cover.position + 1,
  29.                 'startIndexSlider': page.product.cover.position + 1
  30.             } %}
  31.         {% endif %}
  32.     </div>
  33. {% endblock %}
  34. {% block page_product_detail_cross_selling %}
  35.     <div id="hr-recom-k66b49ad06017481e847f78ed"></div>
  36.     <div id="hr-recom-k66b49ad06017481e847f78f0"></div>
  37.     {{parent()}}
  38. {% endblock %}