WooCommerce New Product Badge Icon

WooCommerce New Product Badge

By James Koster

Active Installs

900+

Last Updated

November 28, 2017

First Released

May 6, 2013

Download History (Last one month)


A very simple plugin that displays a ‘new’ badge on products that were published in the last x days. X is defined on the catalog tab of the WooCommerce settings screen.

Please feel free to contribute on github.

  1. Upload woocommerce-new-product-badge to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Define how ‘new’ products must be (in days) to receive the ‘new’ badge on the catalog tab of the WooCommerce settings screen.
  4. Done!

Screenshot Gallery

Installation Instructions

  1. Upload woocommerce-new-product-badge to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Define how ‘new’ products must be (in days) to receive the ‘new’ badge on the catalog tab of the WooCommerce settings screen.
  4. Done!

I want to style the badge myself, how do I remove the default styles

There are only a couple of styles applied to the badge. Although not best practise it’s probably safe to just overwrite these with your own css. However, if you want to do it properly you can either dequeue the css:

add_action( 'wp_enqueue_scripts', 'remove_new_badge_styles', 30 );
function remove_new_badge_styles() {
    wp_dequeue_style( 'nb-styles' );
}

Or use the filter:

add_filter( 'woocommerce_new_badge_enqueue_styles', 'remove_new_badge_styles' );
function remove_new_badge_styles() {
    return false;
}

Changelog

0.3.0 – 04/02/2013

  • Added localization compatibility with WPML

0.2 – 23/05/2013

  • Introduced filter to disable style
  • Minor translation fix and added Dutch translation
  • Added en_GB .po/.mo
  • Stripped object pass by reference

0.1

Initial release.

<br />
<b>Warning</b>:  Undefined array key /home/ylinkin/truewp.net/wp-content/plugins/truewp-plugin-info/truewp-plugin-info.php on line 756
" width="120" height="120">

Available Versions

Version Download Type
0.3.0 Download Stable
0.2 Download Stable
0.1 Download Stable
Development Download Trunk

Plugin Info

  • Version: 0.3.0
  • Last Updated: November 28, 2017
  • Active Installs: 900+
  • WordPress Version: 3.5 or higher
  • Tested up to: 4.0.38
  • PHP Version: or higher
  • Tags:    
    ecommerce new new-product woocommerce

Ratings


4.3 out of 5 stars. (12 reviews)

See all reviews
Scroll to Top