Plugin Pulse
← Pulse

Stickers for WooCommerce

by WeblineIndia · eCommerce

Also makes 10 other plugins · 4.9K+ installs across the portfolio →

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

How scoring works →
88 Health · A
Maintenance 100/100
Rating quality 86/100
Support 70/100

88 health vs 68 average across 5,563 eCommerce plugins

Directory ranking optimization

How it's scored →

How well this listing is tuned to rank in WordPress.org search, on the factors an owner controls. Not popularity, optimization.

97 / 100

Excellent listing optimization

Well tuned across the board

Update recency 100/100
WP compatibility 100/100
Rating quality 85/100
Listing tuning 100/100
Support resolution 100/100

Daily downloads

Since 2022-10-05 · 1,424 days · wp.org + Plugin Pulse archive

+647% vs prior 30d
1KDownloads · Aug 26

30-day downloads

Rolling 30-day volume · peaks are release surges

1.3K

now · peak 4.8K

1.3K30d downloads · Aug 26

Directory rank vs rivals

wp.org popularity rank over time · higher is better · when a rival's line climbs above yours, they've overtaken you

Stickers for WooComm · #3977 you Coming Soon Badges f · #5661 Product Badges For W · #8053 Product Labels For W · #12287

Rating trend

Star average over time · dips mark rough releases

4.7Stars · Aug 26

Update activity

How busy the existing users are, measured as downloads in the last 30 days for every 1,000 active sites. A spike means a new release everyone's pulling; a long, slow decline means an aging user base that updates less.

446per 1k installs · Aug 26

Release cadence

Occasionally updated
from wp.org release tags

How often this plugin actually ships. A steady rhythm is the maintenance signal a single "last updated" date can't show.

1

releases in the last 12 months

12mo ago

latest release · v1.2.8

23

tagged releases on record

Recent releases

1.2.8 · 12mo ago1.2.7 · 1.0y ago1.2.6 · 1.1y ago1.2.5 · 1.4y ago1.2.4 · 1.7y ago1.2.3 · 2.0y ago1.2.2 · 2.1y ago1.2.1 · 2.1y ago1.2.0 · 2.2y ago1.1.9 · 2.4y ago1.1.8 · 2.5y ago1.1.7 · 2.7y ago1.1.6 · 3.6y ago1.1.5 · 5.5y ago

What its installed base runs

via wordpress.org

Share of active installs on each version of this plugin · 71% run the current release. Green is the current release; a big slice on older versions is a user base that has stopped updating.

v1.2 71%
v1.1 28%
v1.0 1.4%

Estimated active installs

The public count shows “3K+”. Our estimate pins where the real number sits.

tracked estimate
3K–4K ≈3.6K

Refined from the date this plugin crossed into its current band.

Install history · since 2015-04-20 · 1,449 observations

3KInstalls · Aug 26

Estimated value

What this plugin might earn a year, and what it might sell for. Modeled from public signals; we don't see anyone's books.

Est. annual revenue

N/A

Est. acquisition value

N/A

No paid tier is visible, so we don't put a figure on revenue or sale value: that would be guessing. The install base is a real asset to an acquirer, just not one public data lets us price. A small install base leaves thin data to model from. The recent download trend is too spiky to read.

Details

Version
1.2.9
Last updated
3d ago
Added
2014-11-26 · 11 yrs old
Requires WP
5.9
Tested up to
7.1
Requires PHP

Recent reviews

All reviews on wp.org ↗
  1. thetankgirl
    2.0y 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.

    Read on wp.org ↗
  2. BruceManning
    3.8y ago

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

    Read on wp.org ↗
  3. calthajewelry
    4.1y ago

    just fine

    Read on wp.org ↗
  4. Iamhere
    7.0y ago

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

    Read on wp.org ↗
  5. doronshe
    7.7y 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, 7 months ago by doronshe.

    Read on wp.org ↗
  6. Adam Pery
    7.8y ago

    Thanks guys

    Read on wp.org ↗
  7. tangoev
    8.6y ago

    Super easy to install and use. Worked first time out of the box. Added our own stickers to match site design. Customer happy. Thanks – will implement on other Woo based sites selling real products. So nice when a Plug In just works.

    Read on wp.org ↗
  8. gaylemadeira
    8.7y ago

    This is an excellent plugin. It works perfectly. You can make different settings for new products, products on sale, and sold out products. Thank you for this great plugin! Note to users – if you want a “Sold” sign to appear, you need to make sure that in WooCommerce > Settings > Products that “Hide out of stock items from the catalog” is NOT checked. You should also check the settings in your products under “Inventory” to make sure they are correct.

    Read on wp.org ↗

Latest updates

via wp.org changelog

Recent releases and news for this plugin

  1. Version 1.2.8 Release Date: September 08, 2025 * Fix: Fixed all issues found in plugin checker tool. * Fix: Minor bug fixes. 1.2.8
  2. Version 1.2.7 Release Date: August 25, 2025 Major Update: All premium features are now 100% free! No more locked features – every sticker option is fully available for everyone. Fix: Checked compatibility with WordPress version Fix: M 1.2.7
  3. Version 1.2.6 Release Date: August 4, 2025 Fix: Checked compatibility with WordPress version 6.8.2 Changed name for the plugin 1.2.6
  4. Version 1.2.5 Release Date: April 2, 2025 Fix: Checked compatibility with WordPress version 6.7.2 1.2.5
  5. Version 1.2.4 Release Date: December 10, 2024 Fix: Checked compatibility with WordPress version 6.7.1 1.2.4
  6. Version 1.2.3 Release Date: Sept 11, 2024 Fix: Checked compatibility with WordPress version 6.6.2 1.2.3

Behavioral tests

via WP Hive

Automated install-time checks, tested on PHP 8.1.12 · WP 6.8.3

Low memory footprint
Low page-speed impact
Runs on latest PHP + WP
No PHP errors
No JS errors
Activates cleanly
No resource errors
No external HTTP errors
Optimized database use
Frequently updated

Languages

via translate.wordpress.org

Translated into 3 languages, 0 at 90% or more

Danish 2%
Spanish (Spain) 2%
Turkish 1%

Growth timeline

Install-tier crossings we have observed, and how long each tier took to outgrow

  1. 2026-01-16 4K+ → 3K+ down after 392 days in tier
  2. 2024-12-20 5K+ → 4K+ down after 416 days in tier
  3. 2023-10-31 6K+ → 5K+ down after 16 days in tier
  4. 2023-10-15 5K+ → 6K+ up after 9 days in tier
  5. 2023-10-06 6K+ → 5K+ down after 334 days in tier
  6. 2022-11-06 7K+ → 6K+ down after 6 days in tier
  7. 2022-10-31 6K+ → 7K+ up after 1 days in tier
  8. 2022-10-30 7K+ → 6K+ down after 5 days in tier

Competes with

The plugins that solve the same job, ranked by shared tags then reach, closest match first. The letter on the right is each plugin's health grade (A best, F worst).

Compare head to head →

Embed this report card

Drop a live Pulse card for Stickers for WooCommerce into a readme, a review or a deck. It updates itself.

<iframe src="https://plugins.wpmayor.com/embed/woo-stickers-by-webline" width="480" height="300" style="border:0" loading="lazy" title="Stickers for WooCommerce — Plugin Pulse"></iframe>
Preview card ↗

Stickers for WooCommerce: 3K+ active installs, 4.7★ (24 reviews). Plugin Pulse (WP Mayor), as of 2026-08-29. https://plugins.wpmayor.com/plugin/woo-stickers-by-webline