AI Verified

Name

WooCommerce Show Product Unit Price

About

By default, WooCommerce only shows the product’s unit price (or price per item) only on the cart page. On the Checkout, Thank You page, Emails, and order view in My Account, the user is not shown the price per unit and instead they are shown the subtotal. For the most aesthetically pleasing solution, editing the template files would be the best option but this has it’s drawbacks when it comes to updates and security. This solution shows you how you can display each product’s unit price on the Checkout, Thank You page, Emails, and order view in My Account. This solution is particularly useful when customers are checking out with more than one quantity of an item and need to be reminded the individual price of a product (it’s single unit price) rather than the subtotal which is the unit price multiplied by the quantity.

Language

PHP

Rating

Voted: 0 by 0 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-product-unit-price

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:

14/11/2022

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:

-------------------------------------------------------------------------------------------------------------
Name | Potential vulnerability found : Cross Site Scripting
Line | 17
Code | echo(ecommercehints_return_unit_price( $product )
Code | Line | 17 : $product = $item->get_product());

Found 1 vulnerabilities

WooCommerce Show Product Unit Price

 
                    
1/**
2* Snippet Name: WooCommerce show the price per unit on the Checkout, Thank You page, Emails, and order view in My Account.
3* Snippet Author: ecommercehints.com
4*/
5 
6// Show product unit price on the Thank You Page, Emails, and order view in My Account.
7function ecommercehints_return_unit_price( $product ) {
8 $unit_price = wc_price($product->get_price());
9 if (!empty($unit_price )) {
10 return '<br><small><strong>(Unit Price: ' . $unit_price . ')</strong></small>';
11 } else {
12 return '';
13 }
14}
15add_action( 'woocommerce_order_item_meta_start', 'ecommercehints_show_unit_price_below_product_name', 10, 4 );
16function ecommercehints_show_unit_price_below_product_name( $item_id, $item, $order, $plain_text ) {
17 $product = $item->get_product();
18 echo ecommercehints_return_unit_price( $product );
19}
20 
21// Show Product Unit Price On The Checkout
22add_filter( 'woocommerce_cart_item_subtotal', 'ecommercehints_show_unit_price_below_subtotal', 10, 3 );
23function ecommercehints_show_unit_price_below_subtotal( $wc, $cart_item, $cart_item_key ) {
24 if ( ! is_cart() ) { // The cart already shows unit price so no need to show it again here
25 $unit_price = wc_price(get_post_meta($cart_item['product_id'] , '_price', true));
26 return $wc . '<br><small><strong>(Unit Price: ' . $unit_price . ')<strong></small>';
27 } else {
28 return $wc;
29 }
30}

0

Related Snippets

Please see some snippets below related to this snippet..

WooCommerce

AI Verified

1

Saves and shows acceptance of terms and conditions - Saves acceptance in the metadata of each order

Added: 1 year ago

Last Updated: 1 year ago

Ingles - Saves and shows acceptance of terms and conditions - Saves acceptance in the metadata of each order Portugues - Salva e mostre a aceitação dos Termos e condições em cada Encomenda (Pedido)

WooCommerce

AI Verified

0

Woo 404 Redirect Optimizer

Added: 2 months ago

Last Updated: 2 months ago

WooCommerce

AI Verified

0

WooCommerce Show Custom Text On Empty Cart Page

Added: 1 year ago

Last Updated: 1 year ago

If the user navigates to the cart page when there is nothing in their cart, they will see a cart notification, “Your cart is currently empty.” To change that particular cart notification, check out ou...

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: 11 months 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: 6 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: 11 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...