custom/plugins/CogiThemeTulip/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. {% if app.request.attributes.get('theme-name') != 'CogiThemeTulip' %}
  4. {{ parent() }}
  5. {% else %}
  6.     <div class="product-detail-buy">
  7.         {% block page_product_detail_rich_snippets %}
  8.             {{ parent() }}
  9.         {% endblock %}
  10.         {% block page_product_detail_not_available %}
  11.             {{ parent() }}
  12.         {% endblock %}
  13.         {% block page_product_detail_buy_container %}
  14.             {{ parent() }}
  15.         {% endblock %}
  16.         {% block page_product_detail_ordernumber_container %}
  17.         {% if app.request.attributes.get('theme-name') != 'CogiThemeTulip' %}
  18.         {{ parent() }}
  19.         {% else %}
  20.             {# REMOVED #}
  21.         {% endif %}
  22.         {% endblock %}
  23.     </div>
  24. {% endif %}
  25. {% endblock %}
  26. {% block page_product_detail_delivery_informations %}
  27. {% endblock %}
  28. {#% block page_product_detail_tax_link %}
  29.     <a class="product-detail-tax-link"
  30.        href="{{ path('frontend.cms.page',{ id: shopware.config.core.basicInformation.shippingPaymentInfoPage }) }}"
  31.        title="{{ taxText }}"
  32.        data-toggle="modal"
  33.        data-modal-class="shipping-modal"
  34.        data-url="{{ path('frontend.cms.page',{ id: shopware.config.core.basicInformation.shippingPaymentInfoPage }) }}">
  35.         {{ taxText }}
  36.     </a>
  37. {% endblock %#}