Skip to content

Instantly share code, notes, and snippets.

@alexv66
Created February 10, 2021 05:53
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 alexv66/82d623841d33dc3f6abb1fd98873d710 to your computer and use it in GitHub Desktop.
Save alexv66/82d623841d33dc3f6abb1fd98873d710 to your computer and use it in GitHub Desktop.
hide "cod" payment method at frontend checkout page
// hide "cod" payment method at frontend checkout page
add_filter( 'woocommerce_available_payment_gateways', function( $available_gateways ) {
if ( !is_admin() )
unset($available_gateways['cod']);
return $available_gateways;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment