Use this snippet to add a new badge on the product loop, then using css you can change the design to mach your theme.
// New badge for recent products
add_action( 'woocommerce_before_shop_loop_item_title', 'new_product_badge', 2 );
add_action( 'woocommerce_product_thumbnails', 'new_product_badge', 2 );
function new_product_badge() {
global $product;
$newness_days = 30; // Number of days the badge is shown
$created = strtotime( $product->get_date_created() );
if ( ( time() - ( 60 * 60 * 24 * $newness_days ) ) < $created ) {
echo '<span class="new-badge">' . esc_html__( 'NEW', 'woocommerce' ) . '</span>';
}
}
Was this helpful?
YesNo