Customize Free product label

Change the label that indicates a product is free.

add_filter('advanced_woo_discount_rules_free_product_option_display_name', function($display){
	if(is_checkout()){
		return '<span class="awdr_free_product_text"> Free </span>';
	}
	return $display;
});