Skip to content

Instantly share code, notes, and snippets.

@ivanmercedes
Created February 10, 2021 13:36
Show Gist options
  • Select an option

  • Save ivanmercedes/868e4c470375445ef4ad88139d17cde0 to your computer and use it in GitHub Desktop.

Select an option

Save ivanmercedes/868e4c470375445ef4ad88139d17cde0 to your computer and use it in GitHub Desktop.
Remove WooCommerce Logout Confirmation with Template Redirect
<?php
//The following is the code that you should add to the functions.php
//file of your theme to remove the WooCommerce logout confirmation message:
add_action( 'template_redirect', 'logout_confirmation' );
function logout_confirmation() {
global $wp;
if ( isset( $wp->query_vars['customer-logout'] ) ) {
wp_redirect( str_replace( '&amp;', '&', wp_logout_url( wc_get_page_permalink( 'myaccount' ) ) ) );
exit;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment