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

Home Forums Support [Resolved] Change to Spanish or erase title="View your shopping cart"

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

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #911960
    Juan Miguel

    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!

    #912300
    Tom
    Lead Developer
    Lead Developer

    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 🙂

    #912345
    Juan Miguel

    It works! Thanks again Tom 🙂

    #912598
    Tom
    Lead Developer
    Lead Developer

    You’re welcome 🙂

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