Set the registration redirect to a specific page in WooCommerce

Set the registration redirect to a specific page in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

function filter_woocommerce_registration_redirect( $redirect ) {
    return get_permalink( get_option( 'woocommerce_myaccount_page_id') ) . 'edit-address/billing';
}
add_filter( 'woocommerce_registration_redirect', 'filter_woocommerce_registration_redirect', 10, 1 );
2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.