modules/QSL/MyWishlist/templates/web/customer/modules/QSL/MyWishlist/button/link.twig line 1

Open in your IDE?
  1. {##
  2.  # Wishlist link
  3.  #}
  4. <a {{ this.printTagAttributes(this.getAttributes()) | raw }} title="{{ t('Wishlist') }}">
  5.     <i class="fa {% if this.getWishlistProductsCount() == '0' %} fa-heart-o {% else %} fa-heart {% endif %}"></i>
  6.     {% if this.hasLabel() %}
  7.        <span class="wishlist-label">{{ this.getDefaultLabel() }}</span>
  8.     {% endif %}
  9.     <span class="wishlist-product-count">
  10.         {{ this.getWishlistProductsCount() }}
  11.     </span>
  12. </a>