custom/plugins/ATNTheme/src/Resources/views/storefront/component/product/card/price-unit.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/component/product/card/price-unit.html.twig' %}
  2. {% block component_product_box_price %}
  3.     {% if product.translated.customFields.wbn_product_settings_hide_price_listings %}
  4.         {#  hide price #}
  5.     {% else %}
  6.         {% if context.customer %}
  7.             {{ parent() }}
  8.         {% else %}
  9.             <p class="product-price">{{ "ATNTheme.loginPrices.short"|trans|sw_sanitize }}</p>
  10.         {% endif %}
  11.     {% endif %}
  12. {% endblock %}