AI Verified

Name

WooCommerce Show Number Of Products Purchased In Emails

About

This snippet counts the total number of products purchased in the order and outputs the total below the order details table. add_action( 'woocommerce_email_after_order_table', 'ecommercehints_show_number_of_products_purchased_in_emails', 10, 4 ); function ecommercehints_show_number_of_products_purchased_in_emails( $order, $sent_to_admin, $plain_text, $email ) { echo '<h2 style="color: #636363; padding-bottom:10px">Number of products purchased: ' . $order->get_item_count() . '<

Language

PHP

Rating

Voted: 1 by 1 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-products-purchased-in-emails

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:

06/07/2024

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 Products Purchased In Emails

 
                    
1add_action( 'woocommerce_email_after_order_table', 'ecommercehints_show_number_of_products_purchased_in_emails', 10, 4 );
2function ecommercehints_show_number_of_products_purchased_in_emails( $order, $sent_to_admin, $plain_text, $email ) {
3 echo '<h2 style="color: #636363; padding-bottom:10px">Number of products purchased: ' . $order->get_item_count() . '</h2>';
4}

1

Related Snippets

Please see some snippets below related to this snippet..

WooCommerce

AI Verified

0

WooCommerce Redirect Product Links On Archive Page

Added: 1 year ago

Last Updated: 1 year ago

This snippet stops the user from being able to the view the single product template and instead redirects them to a user defined URL. In this specific example, we redirect users to our guides page if...

WooCommerce

AI Verified

1

WooCommerce Stock Status Progress Bar for Variations

Added: 1 year ago

Last Updated: 2 months ago

An expanded on version of ecommercehints.com's WooCommerce Stock Status Progress Bar This snippet inserts a progress bar on both single products and variable products' pages, allowing customers t...

WooCommerce

AI Verified

1

WooCommerce Add Custom Text Field To Product

Added: 1 year ago

Last Updated: 1 year ago

In this example, we show you how customer can add custom text to products which will show on the product page, cart, checkout, thank you page, and order editor.

Other Snippets in this Codevault

These are some popular snippets from this users codevault..

WooCommerce

AI Verified

7

WooCommerce Show Number Of People Viewing Product

Added: 1 year ago

Last Updated: 1 month 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

5

WooCommerce Show Number Of Units Sold On Product Page

Added: 1 year ago

Last Updated: 2 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

3

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

Added: 1 year ago

Last Updated: 2 months 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...