custom/plugins/HBCTheme/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. {# ----- add detail button before buy button ----- #}
  3. {% block component_product_box_action_buy %}
  4.     <div class="detailButton">
  5.         <a href="{{ seoUrl('frontend.detail.page', {'productId': id}) }}"
  6.            class="btn btn-block btn-outline-dark"
  7.            title="{{ "listing.boxProductDetails"|trans|striptags }}">
  8.             {{ "listing.boxProductDetails"|trans|sw_sanitize }}
  9.         </a>
  10.     </div>
  11.     {{ parent() }}
  12. {% endblock %}