-
-
Save fernandoacosta/c395c51abeaf80e3fff73015e672eed1 to your computer and use it in GitHub Desktop.
Limitar a simulação dos Correios a 30kg
This file contains 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
add_filter( 'woocommerce_correios_package_weight', 'fa_custom_package_weight' ); | |
function fa_custom_package_weight( $weight ) { | |
return $weight > 30 ? 30 : $weight; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment