Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save amirhmoradi/1cd8ba6c856e6cba1d345fc4dc46333d to your computer and use it in GitHub Desktop.
Save amirhmoradi/1cd8ba6c856e6cba1d345fc4dc46333d to your computer and use it in GitHub Desktop.
Woocommerce pre-orders plugin allow multiple products in cart
<?php
//remove pre-order limitations --> only one item per order
function ax_remove_validation_cart(){
if (!empty($GLOBALS['wc_pre_orders'])){
remove_filter( 'woocommerce_add_to_cart_validation', array( $GLOBALS['wc_pre_orders']->cart, 'validate_cart' ), 15, 2 );
}
}
add_action( 'init', 'ax_remove_validation_cart' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment