This snippet enhances the shopping experience by minimizing steps for customers, directing them straight to the checkout.
add_filter('woocommerce_add_to_cart_redirect', 'redirect_to_checkout');
function redirect_to_checkout() {
return wc_get_checkout_url();
}