Skip to content

Instantly share code, notes, and snippets.

@bigdigital
Created June 2, 2017 06:14
Show Gist options
  • Save bigdigital/52a0e5488a898d51d475e0bf702ff25c to your computer and use it in GitHub Desktop.
Save bigdigital/52a0e5488a898d51d475e0bf702ff25c to your computer and use it in GitHub Desktop.
Woocommerce, remove Product Sales Icon
add_filter('woocommerce_sale_flash', 'woo_custom_hide_sales_flash');
function woo_custom_hide_sales_flash()
{
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment