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 …
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.
Excellent listing optimization
Well tuned across the board
Daily downloads
Since 2022-10-05 · 1,424 days · wp.org + Plugin Pulse archive
30-day downloads
Rolling 30-day volume · peaks are release surges
1.3K
now · peak 4.8K
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
Rating trend
Star average over time · dips mark rough releases
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.
Release cadence
Occasionally updatedHow 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
What its installed base runs
via wordpress.orgShare 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.
Estimated active installs
The public count shows “3K+”. Our estimate pins where the real number sits.
Refined from the date this plugin crossed into its current band.
Install history · since 2015-04-20 · 1,449 observations
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
Est. acquisition value
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
Recent reviews
All reviews on wp.org ↗- ★★★★★ thetankgirl2.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 ↗ - ★★★★★ BruceManning3.8y ago
Thanks a lot! Working on 6.1.0 (29 Nov ’22).
Read on wp.org ↗ - ★★★★★ calthajewelry4.1y ago
just fine
Read on wp.org ↗ - ★★★★★ Iamhere7.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 ↗ - ★★★★★ doronshe7.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 ↗ - ★★★★★ Adam Pery7.8y ago
Thanks guys
Read on wp.org ↗ - ★★★★★ tangoev8.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 ↗ - ★★★★★ gaylemadeira8.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 changelogRecent releases and news for this plugin
- — 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
- — 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
- — 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
- — Version 1.2.5 Release Date: April 2, 2025 Fix: Checked compatibility with WordPress version 6.7.2 1.2.5
- — Version 1.2.4 Release Date: December 10, 2024 Fix: Checked compatibility with WordPress version 6.7.1 1.2.4
- — 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 HiveAutomated install-time checks, tested on PHP 8.1.12 · WP 6.8.3
Languages
via translate.wordpress.orgTranslated into 3 languages, 0 at 90% or more
Growth timeline
Install-tier crossings we have observed, and how long each tier took to outgrow
- 2026-01-16 4K+ → 3K+ down after 392 days in tier
- 2024-12-20 5K+ → 4K+ down after 416 days in tier
- 2023-10-31 6K+ → 5K+ down after 16 days in tier
- 2023-10-15 5K+ → 6K+ up after 9 days in tier
- 2023-10-06 6K+ → 5K+ down after 334 days in tier
- 2022-11-06 7K+ → 6K+ down after 6 days in tier
- 2022-10-31 6K+ → 7K+ up after 1 days in tier
- 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).
-
Coming Soon Badges for WooCommerce 1K+ installs · 4.2★ · 1 shared tag B -
Product Badges For WooCommerce 700+ installs · 4.3★ · 1 shared tag A -
Product Labels For WooCommerce 200+ installs · 4.2★ · 1 shared tag D -
Store Addons for WooCommerce — installs · 3.6★ · 1 shared tag B -
Lime Product Labels — installs · 3.6★ · 1 shared tag B
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> 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