@Xfitwearpr yes please happy to help.
Topic summary
Adding a “new” badge to product cards on collection pages, with two main approaches:
-
Auto by date: Insert Liquid code to compare product.created_at to now; show “NEW!” if added within ~30 days (2592000 seconds). File location varies by theme (e.g., product-grid-item.liquid or card-product.liquid in Dawn 15.2).
-
By tag: Add a “new” tag to products and display the badge using {% if product.tags contains ‘new’ %} New {% endif %} in the product card template.
-
Styling: A CSS snippet was shared to change badge color/background; the original poster confirmed it worked. Custom color/shape for Dawn 15.2 was requested with example images; it was confirmed possible but exact CSS/HTML adjustments were not provided.
-
Theme specifics: For Dawn 15.2, use card-product.liquid (not product-grid-item.liquid). For Refresh, the same approach should work, but one user reported the code appearing in the description rather than as a badge, needing guidance on correct placement in the product card template.
Status: Original request resolved; theme-specific placement and detailed styling for Dawn 15.2 remain open. Images are central to the styling expectations.