Site logo

Archived topic

Change to Spanish or erase title="View your shopping cart"

3 replies · Started by Juan Miguel on May 27, 2019

Viewing posts 1–4 of 4

Hi! I'm looking for change the title="View your shopping cart" to Spanish, using Poedit, and I can´t find this phrase. If there's a way to erase (or hide) the title it helps too.

Thanks!

Hi there,

Try this:

add_filter( 'gettext', function( $translated_text ) {
    if ( 'View your shopping cart' === $translated_text ) {
        $translated_text = 'Your new text here';
    }

    return $translated_text;
} );

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

Let me know :)

It works! Thanks again Tom :)

You're welcome :)

This archived topic is closed to new replies.