WordPress   

Redirect user to a custom URL after registration in WooCommerce

By default, the newly created users are redirected to the My Account page in WooCommerce but you can easily change this redirect URL with the woocommerce_registration_redirect  WooCommerce hook.

 //Custom Redirect after new account creation in WooCommerce
function rp_custom_redirect_after_user_registration( $redirect ) { 
    $redirect = home_url().'/custom-page/';
    return $redirect;
}; 
add_filter( 'woocommerce_registration_redirect', 'rp_custom_redirect_after_user_registration', 10, 1 );
Need Professional Support for Your Website Problems?

Whether you're facing website issues or struggling with code implementation, our team is here to assist. Hire us to get your website back on track.

Hire Us

Got an idea? We'll turn it into reality.

Tell us what you're building, what's broken, or what numbers need to move. We'll come back within one business day with a short plan — no long decks, no sales calls without purpose.

Response time: First reply within 1 business day on 100% of messages.
Transparent scope: Fixed proposals with weekly check-ins & live task tracking.
Ship-ready builds: Every engagement leaves behind documented, transferable work.
Long-term partners: Ongoing retainers for support, SEO, ads, and content.