templates/web/customer/product/add_button/body.twig line 1

Open in your IDE?
  1. {# #
  2.  # Add to bag buttons
  3. #}
  4. {% apply spaceless %}
  5.   <div class="add-button-wrapper {{ this.getFingerprint() }}">
  6.     {% if not this.isAllStockInCart() and this.isProductAvailableForSale() %}
  7.       {{ widget('\\XLite\\View\\Button\\Submit', label=t(this.getAddButtonLabel()), style='regular-main-button add2cart') }}
  8.     {% elseif this.isAllStockInCart() and this.isProductAvailableForSale() %}
  9.       {{ widget('\\XLite\\View\\Button\\Link', label=t('View cart'), location=xurl('cart') , style='regular-main-button') }}
  10.     {% endif %}
  11.   </div>
  12. {% endapply %}