Exclude discount price for SUMO WooCommerce Measurement Price Calculator (by Fantastic Plugins)

Instruction to exclude the discount price when using the SUMO WooCommerce Measurement Price Calculator plugin.

add_filter('advanced_woo_discount_rules_calculate_discount_for_cart_item', function ($calculate_discount, $cart_item){
    if((is_checkout() || is_cart()) && isset($cart_item['fpmp_ip_measure']) && !empty($cart_item['fpmp_ip_measure'])){
        $calculate_discount = false;
    }
	return $calculate_discount;
}, 100, 2);