custom/plugins/NetiNextAccessManager/src/Resources/views/storefront/component/product/card/action.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/component/product/card/action.html.twig' %}
  2. {% block component_product_box_action_inner %}
  3.     {% if config('core.listing.allowBuyInListing')
  4.         and (page.netiAMblockedPrices or product.extensions.netiAMblockedPrices) %}
  5.         <div class="product-action">
  6.             <a href="{{ seoUrl('frontend.detail.page', {'productId': id}) }}"
  7.                class="btn btn-block btn-light"
  8.                title="{{ "listing.boxProductDetails"|trans|striptags }}">
  9.                 {{ "listing.boxProductDetails"|trans|sw_sanitize }}
  10.             </a>
  11.         </div>
  12.     {% else %}
  13.         {{ parent() }}
  14.     {% endif %}
  15. {% endblock %}