Last active
December 21, 2016 13:27
-
-
Save juniorthiesen/e8e77aab03bea0b660d1a292732da999 to your computer and use it in GitHub Desktop.
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
/** | |
* WooCommerce | |
* -------------------------- | |
* redireionar direto para o carrinho depois de click em comprar | |
*/ | |
function redirect_cart_to_checkout() { | |
wp_redirect( get_permalink( get_option( 'woocommerce_checkout_page_id' ) ) ); | |
exit; | |
} | |
add_action( 'woocommerce_add_to_cart', 'redirect_cart_to_checkout', 20 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment