Skip to content

Instantly share code, notes, and snippets.

@ajmorris
Created December 7, 2017 21:48
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 ajmorris/7eb071bc81c897283b0a0483a354f467 to your computer and use it in GitHub Desktop.
Save ajmorris/7eb071bc81c897283b0a0483a354f467 to your computer and use it in GitHub Desktop.
remove the "are you sure" message from logging out of WooCommerce.
<?php
/**
* Bypass logout confirmation.
*/
function iconic_bypass_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;
}
}
add_action( 'template_redirect', 'iconic_bypass_logout_confirmation' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment