I need to display a 'new' badge to product on the archive page but only for products in the 'New' category
add_action( 'woocommerce_after_shop_loop_item_title', 'lottie_new_badge', 40 );
function lottie_new_badge($badge) {
global $product;
if (has_term ('new')) {
echo '<p>New</p>';
}
return $badge;
}
Got this code but not working, mixed few bits of code together to try get it to work but no luck.