Skip to content

Instantly share code, notes, and snippets.

@wickywills
Created June 18, 2019 09:59
Show Gist options
  • Save wickywills/4e95c060cbc25daff5e400582963659f to your computer and use it in GitHub Desktop.
Save wickywills/4e95c060cbc25daff5e400582963659f to your computer and use it in GitHub Desktop.
```
add_filter( 'woocommerce_variation_is_active', 'grey_out_variations_when_out_of_stock', 10, 2 );
function grey_out_variations_when_out_of_stock( $grey_out, $variation ) {
if ( ! $variation->is_in_stock() )
return false;
return true;
}
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment