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

Open in your IDE?
  1. {% sw_extends '@SwpProductOptionsSix/storefront/page/product-detail/index.html.twig' %}
  2. {% block page_product_detail_cross_selling %}
  3. {% endblock %}
  4.         
  5. {% block page_product_detail_tabs %}
  6. {% endblock %}
  7.     {% block page_product_detail_media %}
  8.         <div class="col-lg-6 product-detail-media">
  9.             {% if page.product.media %}
  10.                 {% sw_include '@Storefront/storefront/element/cms-element-image-gallery.html.twig' with {
  11.                     'mediaItems': mediaItems,
  12.                     'zoom': true,
  13.                     'zoomModal': true,
  14.                     'displayMode': 'contain',
  15.                     'gutter': 5,
  16.                     'minHeight': '430px',
  17.                     'navigationArrows': 'inside',
  18.                     'navigationDots': 'inside',
  19.                     'galleryPosition': 'left',
  20.                     'isProduct': true,
  21.                     'fallbackImageTitle': page.product.translated.name,
  22.                     'startIndexThumbnails': 1,
  23.                     'startIndexSlider': 1,
  24.                     'keepAspectRatioOnZoom': false
  25.                 } %}
  26.                 {% if config('core.cart.wishlistEnabled') %}
  27.                     {% block page_product_detail_wishlist %}
  28.                         {% sw_include '@Storefront/storefront/component/product/card/wishlist.html.twig' with {
  29.                             showText: true,
  30.                             size: '46px',
  31.                             productId: page.product.id
  32.                         } %}
  33.                     {% endblock %}
  34.                 {% endif %}
  35.                 
  36.             {% endif %}
  37.         </div>
  38.     {% endblock %}
  39.                                     
  40.     {% block page_product_detail_buy %}
  41.         <div class="col-lg-6 product-detail-buy">
  42.             {% sw_include '@Storefront/storefront/page/product-detail/buy-widget.html.twig' %}
  43.         </div>
  44.     {% endblock %}
  45.     
  46.     
  47.     
  48.     {% block page_product_detail_inner %}
  49.         {{ parent() }}
  50.         {{ block('page_product_detail_cross_selling', '@Storefront/storefront/page/product-detail/index.html.twig') }}
  51.         {{ block('page_product_detail_tabs', '@Storefront/storefront/page/product-detail/index.html.twig') }}
  52.     {% endblock %}
  53.     
  54.