Skip to content

Instantly share code, notes, and snippets.

@NickGreen
Created August 21, 2019 21:51
Show Gist options
  • Save NickGreen/1f9bf5719a049c55b76ebdebdd3bdb97 to your computer and use it in GitHub Desktop.
Save NickGreen/1f9bf5719a049c55b76ebdebdd3bdb97 to your computer and use it in GitHub Desktop.
filter cart weight
<?php
add_filter('woocommerce_cart_contents_weight', 'round_cart_contents_weight', 100, 1);
function round_cart_contents_weight($weight) {
return 100;
// return ceil($weight);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment