Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save AnanthFlycart/cc6f66d5f8ba4e7b9651b7faa8f743eb to your computer and use it in GitHub Desktop.

Select an option

Save AnanthFlycart/cc6f66d5f8ba4e7b9651b7faa8f743eb to your computer and use it in GitHub Desktop.
// Fix - Buy X Get Y (Cheapest or highest) quantity count issue in cart
add_filter('advanced_woo_discount_rules_calculate_cheapest_discount', function ($process, $rule, $cart_item, $is_cart){
if (!$is_cart) {
$process = false;
}
return $process;
}, 10, 4);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment