Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save viniciusrtf/1a3427bc79b6f8cdeaa7 to your computer and use it in GitHub Desktop.
Save viniciusrtf/1a3427bc79b6f8cdeaa7 to your computer and use it in GitHub Desktop.
WooCommerce Hook: Redirect to home when order cancelled
<?php
/**
* Hook: Redirect to home when order cancelled
*/
add_action('woocommerce_cancelled_order','lenura_redirect_to_home');
function lenura_redirect_to_home() {
wp_redirect(home_url());
exit;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment