stuart-d
2/7/2017 - 2:44 PM

Remove the WooCommerce sales badge from products using a filter

Remove the WooCommerce sales badge from products using a filter

function sd_custom_hide_sales_flash() {
	return false;
}
add_filter( 'woocommerce_sale_flash', 'sd_custom_hide_sales_flash' );