AI Verified

Name

WooCommerce Thank You Page Up-Sells

About

Depending on your website theme, WooCommerce by default will only show product up-sells on the product page. Up-sells are products that you recommend instead of the currently viewed product. They are typically products that are more profitable or better quality or more expensive. However, at it’s core, an up-sell is purely a link to another product meaning they can be used in conjunction rather than to replace a currently used product (similar to a cross-sell). This guide shows you how you can show up-sells on the Thank You Page (Order Received Page), giving you the opportunity to increase your Average Order Value (AOV) if the customer missed the up-sells the first time. Make sure you have up-sells setup against your products, and this snippet will show all of them at the bottom of the thank you page. The positioning of the up-sell product loop can be changed by changing the priority in the very first function (we have set it to 10 in this example).

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-thank-you-page-up-sells

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:

Found 0 vulnerabilities

WooCommerce Thank You Page Up-Sells

 
                    
1/**
2* Snippet Name: WooCommerce Thank You Page Up-Sells
3* Snippet Author: ecommercehints.com
4*/
5 
6add_action( 'woocommerce_thankyou', 'ecommercehints_get_up_sells', 10, 1 );
7function ecommercehints_get_up_sells( $order_id ){
8$up_sell_ids = array();
9$order = wc_get_order( $order_id );
10$items = $order->get_items();
11foreach ( $items as $item ) {
12if( $item_up_sell_ids = get_post_meta( $item['product_id'], '_upsell_ids', true ) ) {
13$up_sell_ids = array_unique( array_merge( $item_up_sell_ids, $up_sell_ids ));
14}
15}
16 
17if(!empty($up_sell_ids)) {
18$up_sell = new WP_Query( array(
19'post_type' => array( 'product', 'product_variation' ),
20'post_status' => 'publish',
21'post__in' => $up_sell_ids,
22'orderby' => 'post__in'
23) );
24 
25if( $up_sell->have_posts() ) {
26echo '<h2>You may also like...</h2>';
27woocommerce_product_loop_start();
28while ( $up_sell->have_posts() ) : $up_sell->the_post();
29$product = wc_get_product( $up_sell->post->ID );
30wc_get_template_part( 'content', 'product' );
31endwhile;
32woocommerce_product_loop_end();
33woocommerce_reset_loop();
34wp_reset_postdata();
35}
36}
37}

0

Related Snippets

Please see some snippets below related to this snippet..

WooCommerce

AI Verified

0

Call Us / Add to Basket - Woo Button swap

Added: 1 year ago

Last Updated: 9 months ago

Enable 'Add to Basket' for Products that are In Stock and 'Call Us' when items are out of stock

WooCommerce

Unverified

0

Customize css "Apply Coupon" button in Woocommerce

Added: 1 year ago

Last Updated: 1 year ago

Make customize CSS "Apply Coupon" button in your Woocommerce Cart page.

WooCommerce

AI Verified

2

WooCommerce Remove Cart Notices

Added: 1 year ago

Last Updated: 2 months ago

When adding or removing a product to or from the cart in WooCommerce, a message appears under the header letting the the user know the action has been successful. These messages are known as cart noti...

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