custom/plugins/WebkulBookingReservation/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.     
  4.     {% if (product.extensions['booking'] == 'Yes') %}
  5.         <br/>
  6.         <div>
  7.            <a href="{{ seoUrl('frontend.detail.page', {'productId': id}) }}"
  8.                title="{{ "listing.boxAddProduct"|trans|striptags }}"  class="btn btn-block btn-buy">
  9.                 {{ "listing.boxAddProduct"|trans|striptags }}
  10.             </a>
  11.         </div>
  12.     {% else %}
  13.         {{ parent() }}
  14.     {% endif %}
  15. {% endblock %}