cbdesign
cbdesign

Reputation: 69

Change Wordpress "Update Shopping Cart" Button Text

Current button says "update shopping bag", I'm trying to figure out how to make it say "update shopping cart". This button is seen in-cart, when an item is in the cart.

I managed to change all the other buttons that said "Add to Bag" to "Add to Cart", but this one is tripping me up.

Does anybody know how to do this in woo commerce?

http://montagewestport.com

Upvotes: 1

Views: 10311

Answers (1)

Howli
Howli

Reputation: 12469

That text is set in the cart.php file in the yourtheme/woocommerce/cart folder. It is on line ~ 160

        <input type="submit" class="update-button button" name="update_cart" value="<?php _e('Update Shopping Bag', 'theretailer'); ?>" />

Changing the Update Shopping Bag to Update shopping cart should change it for you.

Upvotes: 2

Related Questions