• Resolved sunshine888

    (@sunshine888)


    Hi!

    Please, help me! Is it possible to change text at cart icon section, where it opens a new pop-in window in right corner? Now its written view cart, checkout and message with empty cart… how can i change text?

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,

    you can try to add this to functions.php (backup before). This will change View Cart to View Shopping Cart:

    function my_text_strings( $translated_text, $text, $domain ) {
    switch ( strtolower( $translated_text ) ) {
    case ‘View Cart’ :
    $translated_text = __( ‘View Shopping Cart’, ‘woocommerce’ );
    break;
    }
    return $translated_text;
    }
    add_filter( ‘gettext’, ‘my_text_strings’, 20, 3 );

    Hi,

    We haven’t heard back from you in a while, so I’m going to mark this as resolved – if you have any further questions, you can start a new thread.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘change text cart icon’ is closed to new replies.