custom/plugins/CoeHidePriceForCustomerGroup/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_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 page_product_detail_tax %}
  12.     <span style="display:none">detailwidget</span>
  13.     {% if not coeHidePrice %}
  14.         {{ parent() }}
  15.     {% else %}
  16.         {# Swag CMS Extension Fix #}
  17.         <a href="#" class="product-detail-tax-link d-none" ></a>
  18.     {% endif %}
  19. {% endblock %}