Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save amanhstu/c9b858abe5cebe9b02b711b64c79f2b6 to your computer and use it in GitHub Desktop.
Save amanhstu/c9b858abe5cebe9b02b711b64c79f2b6 to your computer and use it in GitHub Desktop.
Bypass Woocommerce logout confirmation Message
/**
* Bypass logout confirmation.
*/
function amanhstu_bypass_logout_confirmation()
{
global $wp;
if (isset($wp->query_vars['customer-logout'])) {
wp_redirect(str_replace('&', '&', wp_logout_url(wc_get_page_permalink('myaccount'))));
exit;
}
}
add_action('template_redirect', 'amanhstu_bypass_logout_confirmation');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment