Search for: Log In Free Support [Support request] How do you change the link title of the shopping cart? Home › Forums › Support › How do you change the link title of the shopping cart? This topic has 3 replies, 2 voices, and was last updated 3 months, 1 week ago by David. Viewing 4 posts - 1 through 4 (of 4 total) Author Posts September 3, 2020 at 8:55 pm #1430155 David 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”? September 4, 2020 at 2:26 am #1430406 DavidStaff Customer Support 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 Documentation: http://docs.generatepress.com/ Adding CSS: http://docs.generatepress.com/article/adding-css/ October 9, 2020 at 10:22 pm #1481476 David Ok worked thanks. October 10, 2020 at 2:30 am #1481634 DavidStaff Customer Support Glad to hear that Documentation: http://docs.generatepress.com/ Adding CSS: http://docs.generatepress.com/article/adding-css/ Author Posts Viewing 4 posts - 1 through 4 (of 4 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In