Last active
March 26, 2018 13:58
-
-
Save claudiosanches/4c0fcbfe859e19b0b639768596a1f881 to your computer and use it in GitHub Desktop.
WooCommerce Correios - Free PAC for Shipping Zone
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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