Skip to content

Instantly share code, notes, and snippets.

@acanza
Created December 5, 2016 11:58
Show Gist options
  • Select an option

  • Save acanza/4c9301db6818c60cd480cfcf42c3cfbc to your computer and use it in GitHub Desktop.

Select an option

Save acanza/4c9301db6818c60cd480cfcf42c3cfbc to your computer and use it in GitHub Desktop.
Oculta resto de métodos de envío cuando envío gratuito está disponible WC >= 2.6
//* Oculta resto de métodos de envío cuando envío gratuito está disponible
add_filter( 'woocommerce_package_rates', 'mostrar_solo_envio_gratis', 10, 2 );
function mostrar_solo_envio_gratis( $rates, $package ) {
$new_rates = $rates;
if ( isset( $rates ) ) {
foreach ( $rates as $key => $value ) {
if ( $value->method_id == 'free_shipping' ) {
$new_rates = array( $key => $value );
break;
}
}
}
return $new_rates;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment