PluginSift
PluginsThemesCompare
Directory
  • Plugins
  • Themes
  • Compare Plugins
Plugin Comparisons
  • SEO
  • Security
  • Ecommerce
  • Page Builders
  • Caching
  • Backup
  • Forms
  • Analytics
Resources
  • About
  • Contact
  • llms.txt

© 2026 PluginSift. Data sourced from WordPress.org. · [email protected]

  1. Home
  2. Plugins
  3. Product Badge
  4. Stickers for WooCommerce
Stickers for WooCommerce icon

Stickers for WooCommerce

Enhance your buyer's shopping experience by adding various stickers to your products in your WooCommerce Shop. Various stickers are available lik …

By WeblineIndia·Product Badge·Free
4.7(24 reviews)
·3.0K+ active installs·Updated 6 months ago
DownloadVisit HomepageCompare

As of April 2026, Stickers for WooCommerce is a WordPress product badge plugin with 3.0K+ active installations and a 4.7/5 rating from 24 reviews. It has been downloaded 112K+ times in total. Requires WordPress 3.5+ and PHP false+. Available on WordPress.org since 2014. Downloads are down 37% this week. Top alternative: Coming Soon Badges for WooCommerce.

4.7/524 reviews
3.0K+active installs
112K+total downloads
12 yearssince 2014

Overview

Enhance your buyer’s shopping experience by adding various stickers to your products in your WooCommerce Shop. Various stickers are available like stickers for New, On Sale, Soldout Products, Category Stickers and you can use your custom stickers.

Add various stickers to your products easily from admin panel without any extra efforts or any knowledge of programming.

Key Features

  • Stickers for New, On Sale, Soldout Products and Category Stickers.
  • Admin can even upload and use their Custom Stickers.
  • Admin can define number of days to define product as new.
  • Admin can configure different style of stickers.
  • Admin can enable/disable this sticker feature.
  • Admin can configure stickers for Product List as well for Product Detail page.
  • Admin can configure/override stickers at category and pr…
Read full description on WordPress.org

Screenshots

Ratings & Reviews

4.724 reviews
5 ★
20
4 ★
2
3 ★
1
2 ★
0
1 ★
1

Recent Reviews

Great support, great plugin
by thetankgirl·1 year ago

Setup and using this plugin is very easy and nice. I had another theme that had problems with displaying the custom badge. Support was swift and great.

Working on WP 6.1.0
by BruceManning·3 years ago

Thanks a lot! Working on 6.1.0 (29 Nov ’22).

Helps a lot :)
by calthajewelry·3 years ago

just fine

Works great!
by Iamhere·6 years ago

The custom image ability is a nice feature and the ability to resize it via css is wonderful.

Thanks heaps 🙂

Adding the sold out sticker to the Cart Page
by doronshe·7 years ago

Hi
If you’d like to see the sticker on the cart page for sold out items here are 7 steps that I added to the plugin. (Works for me on WP 5.0.1 WC 3.5.2).

/public_html/wp-content/plugins/woo-stickers-by-webline/public/css/woo-stickers-by-webline-public.css
=====================================================================================================
Add at the BOTTOM
—————–
.woocommerce table.shop_table .woocommerce-cart-form__cart-item td {
position: relative !important;
}
.woocommerce-mini-cart .woosticker {
display: none;
}
/public_html/wp-content/plugins/woo-stickers-by-webline/public/class-woo-stickers-by-webline-public.php
=======================================================================================================
line 65 Add ,[new line]’enable_sticker_cart’ => ‘no’
—————————————————-
// Merge with defaults
$this->general_settings = array_merge ( array (
‘enable_sticker’ => ‘no’,
‘enable_sticker_list’ => ‘no’,
‘enable_sticker_detail’ => ‘no’,
‘enable_sticker_cart’ => ‘no’
), $this->general_settings );

line 285 (after previous addition) just before the last } that closes the class
——————————————————————————-
/**
* Call back function for show sold product badge on cart.
*
* @return string
* @param string $product_image The product image.
* @param string $cart_item.
* @param string $cart_item_key.
* @author Doron Shemesh
*/
public function show_cart_product_soldout_badge($product_image, $cart_item, $cart_item_key)
{
if ($this->general_settings[‘enable_sticker’] == “yes” &&
$this->sold_product_settings[‘enable_sold_product_sticker’] == “yes”) {

if( (!is_product() && $this->general_settings[‘enable_sticker_cart’] == “yes”) ) {

$product = $cart_item[‘data’];

$classSoldPosition=(($this->sold_product_settings[‘sold_product_position’]==’left’) ? ((is_product())? ” pos_left_detail ” : ” pos_left ” ) : ((is_product())? ” pos_right_detail ” : ” pos_right “));

$classSold=(($this->sold_product_settings[‘sold_product_custom_sticker’]==”)?(($this->sold_product_settings[‘enable_sold_product_style’] == “ribbon”) ? (($this->sold_product_settings[‘sold_product_position’]==’left’)?” woosticker soldout_ribbon_left “:” woosticker soldout_ribbon_right “) : (($this->sold_product_settings[‘sold_product_position’]==’left’)?” woosticker soldout_round_left “:” woosticker soldout_round_right “)):”woosticker custom_sticker_image”);

if($product->get_type()==’variable’) {

$total_qty=0;

$available_variations = $product->get_available_variations();

foreach ($available_variations as $variation) {

if($variation[‘is_in_stock’]==true){
$total_qty++;
}

}

if($total_qty==0){
if($this->sold_product_settings[‘sold_product_custom_sticker’]==”) {
echo ‘<span class=”‘.$classSold . $classSoldPosition .'”>Sold Out</span>’;
}
else {
echo ‘<span class=”‘ . $classSold . $classSoldPosition . ‘” style=”background-image:url(‘.$this->sold_product_settings[‘sold_product_custom_sticker’].’);”> Sold Out </span>’;
}
}

}
else {
if (! $product->is_in_stock ()) {
if($this->sold_product_settings[‘sold_product_custom_sticker’]==”) {
echo ‘<span class=”‘.$classSold . $classSoldPosition .'”>Sold Out</span>’;
}
else {
echo ‘<span class=”‘ . $classSold . $classSoldPosition . ‘” style=”background-image:url(‘.$this->sold_product_settings[‘sold_product_custom_sticker’].’);”> Sold Out </span>’;
}
}
}
}
}
return $product_image;
}

/public_html/wp-content/plugins/woo-stickers-by-webline/includes/class-woo-stickers-by-webline.php
==================================================================================================
line 214 just before closing the function define_public_hooks
————————————————————-
//action to show sold out product badge on Cart page
// By Doron Shemesh
$this->loader->add_filter(‘woocommerce_cart_item_thumbnail’, $plugin_public, ‘show_cart_product_soldout_badge’, 11, 3 );

/public_html/wp-content/plugins/woo-stickers-by-webline/admin/class-woo-stickers-by-webline-admin.php
========================================================================================================
line 150 Add ,[new line]’enable_sticker_cart’ => ‘no’
—————————————————-
// Merge with defaults
$this->general_settings = array_merge ( array (
‘enable_sticker’ => ‘no’,
‘enable_sticker_list’ => ‘no’,
‘enable_sticker_detail’ => ‘no’
), $this->general_settings );

line 215 (after previous addition) at the end of the function register_general_settings
—————————————————————————————
// By Doron Shemesh
add_settings_field ( ‘enable_sticker_cart’, ‘Enable Sticker On Cart Page:’, array (
&$this,
‘enable_sticker_cart’
), $this->general_settings_key, ‘section_general’ );

line 423 (after previous additions) before
/**
* New Product Settings :: Enable Stickers
———————————————-
/**
* General Settings :: Enable Sticker On Cart Page
*
* @return void
* @var No arguments passed
* @author Doron Shemesh
*/
public function enable_sticker_cart() {
?>
<select id=’enable_sticker_cart’
name=”<?php echo $this->general_settings_key; ?>[enable_sticker_cart]”>
<option value=’yes’
<?php selected( $this->general_settings[‘enable_sticker_cart’], ‘yes’,true );?>>Yes</option>
<option value=’no’
<?php selected( $this->general_settings[‘enable_sticker_cart’], ‘no’,true );?>>No</option>
</select>
<p class=”description”>Select wether you want to enable sticker feature on cart page or not.</p>
<?php
}

Enjoy

  • This topic was modified 7 years, 3 months ago by doronshe.

Download Trends

Today: 14Yesterday: 5This week: 50Period total: 10K

Compatibility

WordPress3.5+ requiredTested up to 6.8.5
PHPfalse+ required
Dependencieswoocommerce

Version Adoption

v1.2
69.2%
v1.1
29.4%
v1.0
1.4%

Top Alternatives to Stickers for WooCommerce

Coming Soon Badges for WooCommerce icon
Coming Soon Badges for WooCommerce
51.0K+ installsUpdated 1 week ago
ViewCompare
Store Addons for WooCommerce icon
Store Addons for WooCommerce
00 installsUpdated 5 months ago
ViewCompare
View all product badge plugins →

Frequently Asked Questions

Changelog

1.2.8

Release Date: September 08, 2025
* Fix: Fixed all issues found in plugin checker tool.
* Fix: Minor bug fixes.

View full changelog on WordPress.org

Contributors

WeblineIndiaWeblineIndia
Plugin Info
Version
1.2.8
Last Updated
Sep 8, 2025
WP Requires
3.5+
Tested Up To
6.8.5
PHP Requires
false+
Active Installs
3.0K+
Downloads
112K+
Added
Nov 26, 2014
Business
Free

Tags

product badgeproduct stickerscategory stickerswoocommerce stickerswoocommerce products stickers

Developer

W
WeblineIndia
15 plugins0.0M+ total installs
View all plugins →

Quick Compare

Stickers for WooCommerce vs Coming Soon Badges for WooCommerce→Stickers for WooCommerce vs Store Addons for WooCommerce→

Plugin data sourced from WordPress.org. Analysis and metrics by PluginSift.