AI Verified

Name

WooCommerce Registration Redirect

About

By default, when a user registers and creates an account on your WooCommerce website, they are redirected to their dashboard on the My Account page. This guide shows you how to change this and redirect the user to any page you like. We’ve also included a handful of most popular pages including how to redirect the user to: Home Page, Shop Page, Cart Page, Checkout Page, and any custom post or page, upon registration. Simply comment-out

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-registration-redirect

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 Registration Redirect

 
                    
1/**
2 * Snippet Name: WooCommerce Registration Redirect
3 * Snippet Author: ecommercehints.com
4 */
5 
6add_filter( 'woocommerce_registration_redirect', 'ecommercehints_registration_redirect', 10, 1 );
7function ecommercehints_registration_redirect( $redirection_url ){
8 $redirection_url = get_home_url(); // Home page
9 // $redirection_url = get_permalink( wc_get_page_id( 'shop' ) ); // Shop Page
10 // $redirection_url = wc_get_cart_url(); // Cart Page
11 // $redirection_url = wc_get_checkout_url(); // Checkout Page
12 // $redirection_url = get_permalink( 12 ); // Custom Page (The ID of the post/page you would like to redirect to - replace '12')
13 return $redirection_url;
14}

0

Related Snippets

Please see some snippets below related to this snippet..

WooCommerce

AI Verified

0

WooCommerce Show Banner On Specific Product Archive

Added: 1 year ago

Last Updated: 1 year ago

Showing a banner on the product archive template is a great way to capture the customer’s attention as they browse through your products. This guide shows you how you can show such a banner on a speci...

WooCommerce

AI Verified

0

WooCommerce Change Out Of Stock Text

Added: 1 year ago

Last Updated: 1 year ago

If you’ve enabled stock management on our store, customers will see the stock status on the single product page. If a product does not have availability, they’ll see a red sad face and the text “Out o...

WooCommerce

AI Verified

0

WooCommerce: Change the Order notes placeholder text.

Added: 1 year ago

Last Updated: 1 year ago

WooCommerce checkout page. Change the placeholder text inside the Order notes field. https://easywebdesigntutorials.com/woocommerce-modifying-the-checkout-page/

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