Hide discount price in home page only

Hide the discount price on the home page only.

//hide discount price in home page only
add_filter('advanced_woo_discount_rules_modify_price_html', function($modify, $price_html, $product, $quantity) {
	if(function_exists("is_front_page") && function_exists("is_home")) {
		if (is_front_page() || is_home()) {
			$modify = false;
		}
	}
    return $modify;
}, 100, 4);