Skip to content

Instantly share code, notes, and snippets.

@claudiosanches
Created May 6, 2014 03:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save claudiosanches/80925254461bf9380c5a to your computer and use it in GitHub Desktop.
Save claudiosanches/80925254461bf9380c5a to your computer and use it in GitHub Desktop.
WooCommerce MercadoPago - Exclude ticket/boleto
<?php
function custom_wc_mercadopago_args( $args ) {
$args['payment_methods'] = array(
'excluded_payment_types' => array(
array( 'id' => 'ticket' )
)
);
return $args;
}
add_action( 'woocommerce_mercadopago_args', 'custom_wc_mercadopago_args' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment