Hi Guys
I have a nifty bit of php code that allows me to change the text of “Sale” on single product image to any other text.
What i would like to do is use an x theme icon instead of text. For example a “Star” icon.
The code i use now for text change is…
add_filter(‘woocommerce_sale_flash’, ‘woocommerce_custom_sale_text’, 10, 3);
function woocommerce_custom_sale_text($text, $post, $_product)
{ return ‘MY TEXT’; }
How could i replace “MY TEXT” with an icon?
Integrity theme. Crafty template.
Cheers
Max