How to Increase WooCommerce Variation ...
By default, WooCommerce only loads 30 variations on the front-end for variable produc...

WPCodeBox
442

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;
}
}





