Hi,
I have 2 questions.
1. How do i turn SALE text into discount percentage? Is there an option in the theme settings?
2. Is there any plugin that is compatible with any prebuild website? I’ve tried few of them and none of them works. Is this a bug or something? Please tell me 1 plugin that works perfectly fine so i can have product labels such as: NEW, BESTSELLER etc
Thank you,
Hello!
1. The Sale tag is the default tag from Woocommerce. Unfortunately, there are no settings in the theme to affect that only some settings regarding the margin, padding, border, color.
2. Can you please provide more information about what you need to achieve exactly?
Thank you!
Yea,
Except from the SALE tag, i want to show other tags such as: NEW, BESTSELLER.
There are some plugins that does this such as: Product Labels For Woocommerce.
I’ve tested some plugins and none of them are working. This means there is no compatibility between the plugin and the theme.
I want to show the tags in few places such as: homepage, product category, product page.
Thank you
So, there is no solution for this implementation? It would be nice if we could have this option in the future.
Thank you,
Hi,
For the moment there is no theme update available, but as a solution you can use a child theme and set in functions.php file from child this function:
add_filter('woocommerce_sale_flash', 'woocommerce_custom_sale_text', 10, 3); function woocommerce_custom_sale_text($text, $post, $_product) { return '[NEW TEXT]'; }
The results – https://i.imgur.com/BOt46dS.png – https://i.imgur.com/TgFDO3R.png
Thank you!
Ok,
Thank you for your reply. But i don’t want to replace the sale tag, but to add more tags or even some small images.
Thank you