Skip to content

Instantly share code, notes, and snippets.

@agusmu
Created June 27, 2013 08:37
Show Gist options
  • Save agusmu/5874940 to your computer and use it in GitHub Desktop.
Save agusmu/5874940 to your computer and use it in GitHub Desktop.
WooCommerce - Custom Sale Flash Text
add_filter('woocommerce_sale_flash', 'my_custom_sale_flash', 10, 3);
function my_custom_sale_flash($text, $post, $_product) {
return '<span class="onsale"> Promo! </span>';
}
@agusmu
Copy link
Author

agusmu commented Sep 28, 2013

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment