AI Verified

Name

WooCommerce Show Previous Orders Of Product On Single Product Template

About

This snippet allows logged in users to see a history of previous purchases of the currently viewed product under the add to cart button. This snippet is particularly useful to remind customers of when they have previously purchased this product. The date of the purchase is hyperlinked to the order view page. You’ll also notice the quantity of the products ordered is appended as a suffix to the link. Keep in mind, this will only the order history if the status of the order is set to complete. If you are finding previous product orders are not showing, it may be the order status you need to look at.

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-previous-orders-of-product-on-single-product-template

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:

15/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 | 26
Code | echo('<li><a href="' . $public_view_order_url . '">' . $order_date . ' &times)
Code | Line | 21 : $public_view_order_url = esc_url( $order->get_view_order_url() ));

Found 1 vulnerabilities

WooCommerce Show Previous Orders Of Product On Single Product Template

 
                    
1/**
2 * Snippet Name: WooCommerce Show Previous Orders Of Product On Single Product Template
3 * Snippet Author: ecommercehints.com
4 */
5 
6add_action( 'woocommerce_after_add_to_cart_form', 'ecommercehints_show_product_order_history', 10 );
7function ecommercehints_show_product_order_history() {
8 global $product, $post;
9 echo '<strong>Previous Purchases</strong><br><ol>';
10 $orders = get_posts( array(
11 'numberposts' => -1,
12 'meta_key' => '_customer_user',
13 'meta_value' => get_current_user_id(),
14 'post_type' => 'shop_order',
15 'post_status' => 'wc-completed'
16 ) );
17 foreach ($orders as $order) {
18 $order = new WC_Order( $order->ID );
19 $order_data = $order->get_data();
20 $order->get_date_completed();
21 $public_view_order_url = esc_url( $order->get_view_order_url() );
22 $items = $order->get_items();
23 foreach( $items as $item ) {
24 $product_id = $item['product_id'];
25 $quantity = $item->get_quantity();
26 if ( $post->ID == $product_id ) {
27 echo '<li><a href="' . $public_view_order_url . '">' . $order_date . ' &times;</a>' . $quantity . '</li>';
28 }
29 }
30 }
31 echo '</ol></div>';
32}

0

Related Snippets

Please see some snippets below related to this snippet..

WooCommerce

AI Verified

0

Automatically add coupon codes to shopping cart for offers

Added: 2 years ago

Last Updated: 1 year ago

The more user-friendly your store is, the more orders you will get. So why should your customers have to manually enter a coupon code you offer? It is much better to add the code automatically when th...

WooCommerce

AI Verified

3

WooCommere Remove Checkout Billing Fields For Virtual Product Orders

Added: 1 year ago

Last Updated: 2 days ago

This snippet checks the cart contents and will remove the billing fields if there are only virtual products in the order.This means your customers will only need to enter their first name, last name,...

WooCommerce

AI Verified

0

WooCommerce Change Verified Owner Reviews Text

Added: 1 year ago

Last Updated: 1 year ago

If you’re using capturing reviews and using WooCommerce to facilitate bookings, courses, events, or services, showing the label “verified owner” doesn’t really make much sense. Imagine having 15 revie...

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