How to Change the WordPress Login Page...
This snippet allows you to easily change the URL of the logo on your WordPress login ...

WPCodeBox
39
Adjust the ‘$redirect = ““;’ entry to customize the redirect URL after WooCommerce user registration.
/**
* Author: WP Turned UP
* Author URI: https://wpturnedup.com
*/
// WOOCOMMERCE REDIRECT AFTER REGISTRATION
add_filter("woocommerce_registration_redirect", "wcs_register_redirect");
function wcs_register_redirect($redirect) {
$redirect = "https://domain.com/page-url";
return $redirect;
}