den4
11/10/2018 - 7:05 PM

Go To Checkout - NO Cart

/*** GO TO CHECKOUT - NO CART ***/
add_filter('add_to_cart_redirect', 'themeprefix_add_to_cart_redirect');
function themeprefix_add_to_cart_redirect() {
 global $woocommerce;
 $checkout_url = $woocommerce->cart->get_checkout_url();
 return $checkout_url;
}