Skip to content

Instantly share code, notes, and snippets.

@claudiosanches
Last active October 31, 2022 16:02
Show Gist options
  • Save claudiosanches/6724ec08c37bc95741aa1db210450245 to your computer and use it in GitHub Desktop.
Save claudiosanches/6724ec08c37bc95741aa1db210450245 to your computer and use it in GitHub Desktop.
WooCommerce Correios - PAC Free
<?php
function custom_woocommerce_correios_shipping_methods( $rate ) {
$rate['cost'] = 0;
return $rate;
}
add_filter( 'woocommerce_correios_correios-pac_rate', 'custom_woocommerce_correios_shipping_methods' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment