Skip to content

Instantly share code, notes, and snippets.

@juniorthiesen
Last active December 21, 2016 13:27
Show Gist options
  • Save juniorthiesen/e8e77aab03bea0b660d1a292732da999 to your computer and use it in GitHub Desktop.
Save juniorthiesen/e8e77aab03bea0b660d1a292732da999 to your computer and use it in GitHub Desktop.
/**
* 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