How to change the text on sale badge i handpicked products?
-
I’m trying to change the text on the sale badge in the handpicked products block. Now it says “Rea” and I want change it to “Kampanj”.
I managed to change the text on the category and product pages using a code snippet:
function woocommerce_custom_sale_text( $text, $post, $_product ) {
return ‘Kampanj’;
}
add_filter(‘woocommerce_sale_flash’, ‘woocommerce_custom_sale_text’, 10, 3);Can the text in handpicked products sale badge be changed using CSS?
The page I need help with: [log in to see the link]
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘How to change the text on sale badge i handpicked products?’ is closed to new replies.