AI Verified

Name

WooCommerce Show Customer Addresses On Thank You Page For Guest Checkouts

About

WooCommerce thank you page not showing customer details like the Billing Address and Shipping Address? It may be because the user is not logged in and checking out as a guest! By default, WooCommerce does not show customer details on the thank you page (order received endpoint of the checkout) if they checkout as a guest. The customer details being the Billing Address, including the billing email and billing phone, and Shipping Address. After tearing my hair out thinking there was a conflict somewhere, it turns out this is native behaviour of WooCommerce. The customer details are not shown on the order received page for security purposes. The customer details is not protected in the same way for logged in, registered users. This snippet will run on the thank you page and tests whether the user is logged in or not. If they are, nothing happens because when a user is logged in, these customer details are shown. However, if the code picks up that the user is not logged in, it will force the thank you page to output the order-details-customer.php template which is the customer details (Billing Address, including the billing email and billing phone, and Shipping Address (if enabled and entered)).

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-customer-addresses-on-thank-you-page-for-guest-checkouts

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 Show Customer Addresses On Thank You Page For Guest Checkouts

 
                    
1/**
2 * Snippet Name: WooCommerce Show Customer Addresses On Thank You Page For Guest Checkouts
3 * Snippet Author: ecommercehints.com
4 */
5 
6add_action( 'woocommerce_thankyou', 'ecommercehints_show_customer_addresses_on_thank_you_if_guest', 10, 1 );
7function ecommercehints_show_customer_addresses_on_thank_you_if_guest($order_id) {
8 if (!$order_id || is_user_logged_in()) { // Do nothing if there is no order or the customer is logged in
9 return;
10 }
11 $order = wc_get_order($order_id);
12 wc_get_template( 'order/order-details-customer.php', array('order' => $order )); // Show the addresses
13}

0

Related Snippets

Please see some snippets below related to this snippet..

WooCommerce

AI Verified

0

Disable WooCommerce Ajax Cart Fragments On Homepage

Added: 1 year ago

Last Updated: 1 year ago

WooCommerce

AI Verified

1

WooCommerce Custom Text After Register Form Button

Added: 1 year ago

Last Updated: 2 months ago

This guide shows you how you can add any custom text after the register button on the registration form shown on the My Account page.

WooCommerce

AI Verified

0

WooCommerce Redirect Cart to Checkout page

Added: 1 year ago

Last Updated: 1 year ago

Skip the Cart page and redirect to the Checkout page.

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