Skip to content

Instantly share code, notes, and snippets.

@claudiosanches
Last active March 26, 2018 13:58
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/4c0fcbfe859e19b0b639768596a1f881 to your computer and use it in GitHub Desktop.
Save claudiosanches/4c0fcbfe859e19b0b639768596a1f881 to your computer and use it in GitHub Desktop.
WooCommerce Correios - Free PAC for Shipping Zone
<?php
function custom_woocommerce_correios_shipping_methods( $rate, $instance_id ) {
// Verifica se esta utilizando a instancia correta, se não estiver para o código.
if ( 99 !== $instance_id ) {
return $rate;
}
$rate['cost'] = 0;
return $rate;
}
add_filter( 'woocommerce_correios_correios-pac_rate', 'custom_woocommerce_correios_shipping_methods', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment