Skip to content

Instantly share code, notes, and snippets.

@AntoscencoVladimir
Created April 16, 2016 14:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AntoscencoVladimir/cc885647e75bb5fac68aa33bbfb5ba52 to your computer and use it in GitHub Desktop.
Save AntoscencoVladimir/cc885647e75bb5fac68aa33bbfb5ba52 to your computer and use it in GitHub Desktop.
Woocommerce OneSALE customize text
//Woocommerce OneSALE customize text
add_filter('woocommerce_sale_flash', 'my_custom_sale_flash', 10, 3);
function my_custom_sale_flash($text, $post, $_product)
{
return '<span class="onsale">Your text here</span>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment