Site logo

Archived topic

translate Send me promos and product updates.

7 replies · Started by Juan Luis on February 28, 2020

Viewing posts 1–8 of 8

some way to translate the text "Send me promotions and product updates".
This text is found at checkout.

I tried with crazy translate but I can't find the chain

Hi there,

can you provide a link to your site so i can see where that text is being generated ?

Hi there,

Can you try this PHP snippet?

add_filter( 'gettext', function( $translated_text ) {
    if ( 'Send me promos and product updates.' === $translated_text ) {
        $translated_text = 'TRANSLTED TEXT HERE';
    }

    return $translated_text;
} );

Adding PHP: https://docs.generatepress.com/article/adding-php/

Hello Leo, finally no change was made, with the code you gave me.

I did it through the code snippets plugin

and I put the option to "Execute the code snippet in all parts"

Any suggestions, thanks

Which plugin are you using to add the email follow up ?

This archived topic is closed to new replies.