custom/plugins/econdCrossSelll/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_buy %}
  3.     {% if cs_response %}
  4.     <a href="{{ seoUrl('frontend.detail.page', {'productId': id}) }}{{ emcsParams[product.id] }}"
  5.        class="btn btn-block btn-light"
  6.        title="{{ "listing.boxProductDetails"|trans|striptags }}">
  7.         {{ "listing.boxProductDetails"|trans|sw_sanitize }}
  8.     </a>
  9.     {% else %}
  10.         {{ parent() }}
  11.     {% endif %}
  12. {% endblock %}
  13. {% block component_product_box_action_detail %}
  14. <a href="{{ seoUrl('frontend.detail.page', {'productId': id}) }}{% if emcsParams[product.id] %}{{ emcsParams[product.id] }}{% endif %}"
  15.    class="btn btn-block btn-light"
  16.    title="{{ "listing.boxProductDetails"|trans|striptags }}">
  17.     {{ "listing.boxProductDetails"|trans|sw_sanitize }}
  18. </a>
  19. {% endblock %}