-
-
Save brunoalvarenga/d8cf310744f9a0c291b2a09e4fd2eb5f to your computer and use it in GitHub Desktop.
WooCommerce - Redirect to checkout after add product to the cart
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Add to cart redirect to checkout. | |
* | |
* @param string $url | |
* @return string | |
*/ | |
function my_wc_add_to_cart_redirect_to_checkout( $url ) { | |
return wc_get_checkout_url(); | |
} | |
add_filter( 'woocommerce_add_to_cart_redirect', 'my_wc_add_to_cart_redirect_to_checkout' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment