Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1286701

    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

    #1286704

    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

    • This reply was modified 3 years, 9 months ago by Yigit.
    #1286724

    Hi,

    thanks for your answer. It doesnt works, thanks

    best regards

    #1286726

    Hey,

    I have tested it on my local installation before posting and it worked for me.

    Could you please create temporary admin logins and post them here privately so we can look into it? :)

    Regards,
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.