Guest User

Product Collection Card Badges

a guest
Sep 26th, 2024
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | Source Code | 0 0
  1. <!-- Badges Section -->
  2. <div class="product-badges">
  3. {% if card_product.tags contains 'best-seller' %}
  4. <div class="badge-product best-seller">BEST SELLER</div>
  5. {% endif %}
  6.  
  7. {% if card_product.tags contains 'back-in-stock' %}
  8. <div class="badge-product back-in-stock">BACK IN STOCK</div>
  9. {% endif %}
  10.  
  11. {% if card_product.tags contains 'new-in' %}
  12. <div class="badge-product new-in">NEW IN</div>
  13. {% endif %}
  14. </div>
  15. <!-- End of Badges Section -->
Advertisement
Add Comment
Please, Sign In to add comment