Skip to content

Instantly share code, notes, and snippets.

@metelidrissi
Last active September 17, 2019 22:59
Show Gist options
  • Save metelidrissi/cf26a955d5cfc2500915a491d0c57eb9 to your computer and use it in GitHub Desktop.
Save metelidrissi/cf26a955d5cfc2500915a491d0c57eb9 to your computer and use it in GitHub Desktop.
Redireccionar botón hacia checkout en WooCommerce
<php
add_filter ('add_to_cart_redirect', 'redirect_to_checkout');
function redirect_to_checkout() {
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