Created
May 10, 2019 16:46
-
-
Save messica/3c17539ed00954eeae8ac16be91ee8ab to your computer and use it in GitHub Desktop.
Allow multiple membership products to be purchased.
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 | |
| /** | |
| * Allow multiple membership products to be purchased. | |
| */ | |
| function my_pmprowoo_plugins_loaded() { | |
| remove_filter( 'woocommerce_is_purchasable', 'pmprowoo_is_purchasable', 10, 2 ); | |
| } | |
| add_action( 'plugins_loaded', 'my_pmprowoo_plugins_loaded' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment