Created
June 2, 2017 06:14
-
-
Save bigdigital/52a0e5488a898d51d475e0bf702ff25c to your computer and use it in GitHub Desktop.
Woocommerce, remove Product Sales Icon
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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