Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ideadude/9aaccf5cb4433004d0147633c47e8d35 to your computer and use it in GitHub Desktop.
Save ideadude/9aaccf5cb4433004d0147633c47e8d35 to your computer and use it in GitHub Desktop.
Disable the PMPro WooCommerce filter that restricts carts to only 1 membership product at a time.
<?php
/**
* Disable the PMPro WooCommerce filter that restricts carts
* to only 1 membership product at a time.
* Add this code into a custom plugin.
*/
function disable_pmprowoo_is_purchasble_filter() {
remove_filter( 'woocommerce_is_purchasable', 'pmprowoo_is_purchasable', 10, 2 );
}
add_action( 'init', 'disable_pmprowoo_is_purchasble_filter' );
?>
@hutber
Copy link

hutber commented Jan 28, 2021

Brilliant, thank you for this!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment