custom/plugins/ZeobvBundleProducts/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_container %}
  3.     {{ parent() }}
  4.     {% block page_product_detail_buy_container_bundle_list %}
  5.         {% if page.product.customFields.zeobvBundleProductsShowOnStorefront %}
  6.             {% sw_include '@ZeobvBundleProducts/zeobv-bundle-products/components/bundle-product-info.html.twig' with {
  7.                 products: page.product.extensions.zeobvBundleProducts.salesChannelProducts,
  8.                 showPrices: page.product.customFields.zeobvBundleProductsShowItemPricesOnStorefront,
  9.                 showTotalPrice: page.product.customFields.zeobvBundleProductsShowItemsTotalPriceOnStorefront
  10.             } %}
  11.         {% endif %}
  12.     {% endblock %}
  13. {% endblock %}