New Landing How can we help? Themeforest Theme Support Neighborhood Change 'View Shopping Bag' and 'Update Shopping Bag'

Viewing 2 posts - 1 through 2 (of 2 total)
  • #150733
    GTS75
    Member
    Post count: 240

    I’d like to change ‘Shopping Bag’ to ‘Cart’ for both the ‘View Shopping Bag’ and ‘Update Shopping Bag’ buttons. Is there custom css to do this?

    Thanks guys

    #150763
    Mohammad – SUPPORT
    Moderator
    Post count: 27441

    Hi,
    Please paste this code at functions.php of child theme.

    <?php
    function sf_text_strings( $translated_text, $text, $domain ) {
    $translated_text = strtolower($translated_text);
    switch ( $translated_text ) {
    case 'view shopping bag' :
    $translated_text = __( 'View Cart', 'woocommerce' );
    break;
    case 'update shopping bag' :
    $translated_text = __( 'Update cart', 'woocommerce' );
    break;
    }
    return $translated_text;
    }
    add_filter( 'gettext', 'sf_text_strings', 20, 3 );
    ?>

    Thanks
    Mohammad

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in and have valid license to reply to this topic.

License required for one of the following items
Login and Registration Log in · Register