Redirect to checkout page after add to cart

add_action( ‘add_to_cart_redirect’, ‘add_to_cart_checkout_redirect’, 16 ); function add_to_cart_checkout_redirect() { global $woocommerce; $checkout_url = $woocommerce->cart->get_checkout_url(); return $checkout_url; }

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.