custom/plugins/NetzpEvents6/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((product.extension('event') and product.extension('event').bookable) or
  4.           (product.extension('eventparent') and product.extension('eventparent').bookable)) %}
  5.         <a href="{{ seoUrl('frontend.detail.page', {'productId': id}) }}"
  6.            class="btn btn-block btn-light"
  7.            title="{{ "listing.boxProductDetails"|trans|striptags }}">
  8.             {{ "listing.boxProductDetails"|trans|sw_sanitize }}
  9.         </a>
  10.     {% else %}
  11.         {{ parent() }}
  12.     {% endif %}
  13. {% endblock %}