Last active
September 11, 2017 08:35
-
-
Save swoboda/27b457dd3856335259618798c2e6eeac to your computer and use it in GitHub Desktop.
Make all WooCommerce products to be sold individually
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 | |
// Do NOT include the opening php tag | |
// Make all products to be sold individually | |
add_filter( 'woocommerce_is_sold_individually', '__return_true' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment