AI Verified

Name

Show 'NEW' Badges for Recently Added Items in WooCommerce

About

This code snippet adds a "NEW!" badge to products in WooCommerce, indicating that they are newly added. The badge is displayed both on the product archive pages and the single product template for a specified period (in this case, 10 days) after the product's creation date.

Language

PHP

Rating

Voted: 0 by 0 user(s)

How to Setup Snippet

Simply copy the pre-coded solution to your active child theme’s functions.php or preferably the Code Snippets Plugin.

Codevault

WDXTechnologies

Scroll down to see more snippets from this codevault.

Wordpress Compatability

The author has indicated that this snippet is compatable up to wordpress version: 6.4

Our AI bot has checked this snippet is compatable up to wordpress version: 6.1

Code Snippet Plugin Sync

Free & Pro

Download this snippet by clicking the download button, then head over to the Code Snippet Plugin settings in your wordpress admin dashboard, select the import menu then upload this file to import into your wordpress site.

Pro Only (Coming Soon)

You will be able to click a button and sync this snippet to your wordpress site automatically and from your dashboard manage all code snippets across all your wordpress sites that have the Code Snippets Pro plugin installed.

History

Last modified:

02/01/2024

Important Note

This snippet has the following status:

AI Verified

This snippet has been tested by our AI bot, see any comments below.

AI Bot Comments:

Found 0 vulnerabilities

Show 'NEW' Badges for Recently Added Items in WooCommerce

 
                    
1/**
2 * Snippet Name: Show 'NEW' Badges for Recently Added Items in WooCommerce
3 * Snippet Author: wdxtechnologies.com
4 */
5 
6// Show the NEW badge on the archive loop item
7add_action( 'woocommerce_after_shop_loop_item_title', 'ecommercehints_product_archive_new_badge', 1 );
8function ecommercehints_product_archive_new_badge() {
9 global $product;
10 $days_to_show = 10; // Show the new badge for 10 days
11 $product_published_date = strtotime( $product->get_date_created() );
12 if ( ( time() - ( 60 * 60 * 24 * $days_to_show ) ) < $product_published_date ) {
13 echo '<span class="onsale">' . 'NEW!' . '</span>'; // The "NEW!" text with the sale badge styling
14 }
15}
16 
17// Show the NEW badge on the single product template
18add_action( 'woocommerce_single_product_summary', 'ecommercehints_single_product_new_badge', 3 );
19function ecommercehints_single_product_new_badge() {
20 global $product;
21 $days_to_show = 10; // Show the new badge for 10 days
22 $product_published_date = strtotime( $product->get_date_created() );
23 if ( ( time() - ( 60 * 60 * 24 * $days_to_show ) ) < $product_published_date ) {
24 echo '<span class="onsale">' . 'NEW!' . '</span>'; // The "NEW!" text with the sale badge styling
25 }
26}

0

Related Snippets

Please see some snippets below related to this snippet..

WooCommerce

AI Verified

1

WooCommerce Sort Products By SKU

Added: 1 year ago

Last Updated: 2 months ago

For very rare cases, you may wish to allow customers to sort products by SKU. This use case would be useful in perhaps a B2B setting, events, or wholesaler.

WooCommerce

AI Verified

0

Woo Dodaj nesto iza cene

Added: 1 year ago

Last Updated: 1 year ago

WooCommerce

AI Verified

0

Change number of products per row to 3

Added: 2 years ago

Last Updated: 1 year ago

Other Snippets in this Codevault

These are some popular snippets from this users codevault..

WooCommerce

AI Verified

0

Show 'NEW' Badges for Recently Added Items in WooCommerce

Added: 8 months ago

Last Updated: 8 months ago

This code snippet adds a "NEW!" badge to products in WooCommerce, indicating that they are newly added. The badge is displayed both on the product archive pages and the single product template for a s...

WooCommerce

AI Verified

0

Integrate a 'Sold' Column into the WordPress Dashboard's Product Section

Added: 10 months ago

Last Updated: 10 months ago

Are you interested in knowing the quantity of items you have sold?

WooCommerce

AI Verified

0

Transforming Coupon Codes into Discount Codes in WooCommerce

Added: 9 months ago

Last Updated: 9 months ago

In certain situations, the term "coupon" may be inappropriate. To address this, we've developed several guides suggesting alternative synonyms for "coupon." This specific guide focuses on replacing th...