Site logo

Archived topic

How do you change the link title of the shopping cart?

3 replies · Started by David on September 3, 2020

Viewing posts 1–4 of 4

How to change the link title of the shopping cart which displays as "View your shopping cart" to "View your shopping basket or some other term"?

Hi there,

The Woo plugin doesn't add many filters for changing labels - so it relies heavily on the GETTEXT filter. Try this:

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

    return $translated_text;
} );

Note: Mini Cart is cached - so changes not always reflected:

https://github.com/woocommerce/woocommerce/issues/15375

Ok worked thanks.

Glad to hear that

This archived topic is closed to new replies.