custom/plugins/CoeHidePriceForCustomerGroup/src/Resources/views/storefront/component/buy-widget/buy-widget.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/page/product-detail/buy-widget.html.twig' %}
  2. {% block buy_widget_data_rich_snippet_price_range %}
  3.     {% if coeHidePrice %}
  4.         <meta itemprop="lowPrice" content="0"/>
  5.         <meta itemprop="highPrice" content="0"/>
  6.         <meta itemprop="offerCount" content="0"/>
  7.     {% else %}
  8.         {{ parent() }}
  9.     {% endif %}
  10. {% endblock %}
  11. {% block buy_widget_tax %}
  12.     {% if not coeHidePrice %}
  13.         {{ parent() }}
  14.     {% else %}
  15.         {# Swag CMS Extension Fix #}
  16.         <a href="#" class="product-detail-tax-link d-none" ></a>
  17.     {% endif %}
  18. {% endblock %}