Hello Guys,
I try to change the Woocommerce words Verkauf! into Aktion with this code but it doesnt works:
function prefix_woocommerce_sale_flash( $text ) {
$text = ‘<span class=”onsale”>’. __( ‘Aktion’, ‘text_domain’ ). ‘</span>’;
return $text;
}
add_filter( ‘woocommerce_sale_flash’, ‘prefix_woocommerce_sale_flash’ );
Can you please help me out?
Thank You
Hey,
Thanks for contacting us!
Please use the code as following
add_filter('woocommerce_sale_flash', 'woocommerce_custom_sale_text', 10, 3);
function woocommerce_custom_sale_text($text, $post, $_product)
{
$text = '<span class="onsale">'. __( 'Aktion', 'text_domain' ). '</span>';
return $text;
}
Best regards,
Yigit
Hi,
thanks for your answer. It doesnt works, thanks
best regards