AI Verified

Name

WooCommerce Show Number Of Units Sold On Product Page

About

Showing the number of product units sold on the single product page is a great way to introduce Fear Of Missing Out (FOMO). You can highlight how many products are sold to let customers know a product’s popularity. This particular solution shows the number of products sold under the add to cart button, somewhere the customer is bound to see it.

Language

PHP

Rating

Voted: 4 by 4 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.

Link for further information:

The author has provided the following URL that may be helpful to setting up or using this snippet:

https://www.ecommercehints.com/woocommerce-show-number-of-units-sold-on-product-page

Codevault

ecommercehints

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.1

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.

Website/ Profile URL:

https://www.ecommercehints.com/

History

Last modified:

31/10/2023

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

WooCommerce Show Number Of Units Sold On Product Page

 
                    
1/**
2 * Snippet Name: WooCommerce Show Number Of Units Sold On Product Page
3 * Snippet Author: ecommercehints.com
4 */
5 
6add_action( 'woocommerce_after_add_to_cart_button', 'ecommercehints_show_units_sold_product_page' );
7function ecommercehints_show_units_sold_product_page() {
8 global $product;
9 echo '<br>Units Sold: '. $product->get_total_sales();
10}

4

Featured Snippet

Comments

  • NS

    1 year ago

    Hey There, Can we show a Random Number for Unites Sold, When this shows ZERO (0) or 1 or 2 that looks bad. You already have a snippet No of PPL viewing this products with a Number range, Can have the same for this snippet as well :)
    
    Thanks
  • RP

    1 year ago

    @Niral Sura, sure!
    Use an if statement to check the $product->get_total_sales().
    If the variable == 0 || variable == 1 variable == 2 show a random number instead using "rand (3,10)" where 3 is the minimum random number and 10 is the maximum.
    I wouldn't advise it though, people can usually see right through dishonest figures!
  • AR

    1 year ago

    This is a great snippet Alex - hats off to you on this one - I small suggestion would be to wrap the text in a <p> tag or a <div> or similar and give it a class something like "units-sold-text" this way it makes styling this to pop out much easier 😎

Related Snippets

Please see some snippets below related to this snippet..

WooCommerce

AI Verified

0

Change number of related products on product page

Added: 1 year ago

Last Updated: 1 year ago

The so called "Related Products" are a great thing, however you might want to influence the output of these similar items a bit. This code takes care of that.

WooCommerce

AI Verified

1

Hide Order Notes

Added: 1 year ago

Last Updated: 1 year ago

Hide Order notes in WooCommerce check out page.

WooCommerce

AI Verified

0

WooCommerce Show Order Weight Column In My Account Orders Table

Added: 1 year ago

Last Updated: 1 year ago

This snippet inserts a new, custom column in the table of orders shown in My Account > Orders populated with the total weight of the order so the customer is aware how heavy their order was.Specifical...

Other Snippets in this Codevault

These are some popular snippets from this users codevault..

WooCommerce

AI Verified

5

WooCommerce Show Number Of People Viewing Product

Added: 1 year ago

Last Updated: 1 year ago

We want to make this solution absolutely clear from the outset. This snippet does NOT generate the actual number of people viewing the product. It shows a randomly generated number in the range of two...

WooCommerce

AI Verified

4

WooCommerce Show Number Of Units Sold On Product Page

Added: 1 year ago

Last Updated: 8 months ago

Showing the number of product units sold on the single product page is a great way to introduce Fear Of Missing Out (FOMO). You can highlight how many products are sold to let customers know a product...

WooCommerce

AI Verified

2

WooCommerce Add Content Under The Proceed To Checkout Button On The Cart Page

Added: 1 year ago

Last Updated: 1 year ago

How many times have you bought something online and seen trust symbols near the proceed to checkout button on the cart page? “30 Day Money Back Guarantee” or “Secure Checkout” are popular examples. By...