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

WPCodeBox
96
Easily redirect WooCommerce users to a custom URL after checkout by adjusting the ‘$url = ‘‘;’ in the provided code snippet.
/**
* Author: WP Turned UP
* Author URI: https://wpturnedup.com
*/
// WOOCOMMERCE REDIRECT AFTER CHECKOUT
add_action( 'woocommerce_welcome', 'wptu_redirectcustom');
function wptu_redirectcustom( $order_id ){
$order = wc_get_order( $order_id );
$url = 'https://domain.com/page';
if ( ! $order->has_status( 'failed' ) ) {
wp_safe_redirect( $url );
exit;
}
}