Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save INDIAN2020/54a23f1ab81a7771a632e99554c38c43 to your computer and use it in GitHub Desktop.
Save INDIAN2020/54a23f1ab81a7771a632e99554c38c43 to your computer and use it in GitHub Desktop.
Skip the cart and go directly to checkout #woocommerce #cart
<?php
/**
* Direct Checkout on Add-to-cart
*/
add_filter('add_to_cart_redirect', 'yanco_add_to_cart_redirect');
function yanco_add_to_cart_redirect() {
global $woocommerce;
$checkout_url = $woocommerce->cart->get_checkout_url();
return $checkout_url;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment