Renaming the shopping cart

Posts: 18
Joined: 12/27/2007

I'm looking to rename the shopping cart. How can I go about doing this?

Forgive me if this is a no-brainer, I tried searching for it but didn't see anything.

Posts: 924
Joined: 11/05/2007
Bug FinderFAQ ModeratorGetting busy with the Ubercode.

You can override the theme_uc_cart_block_title() function in your theme. This is the most general method, and learning how to override theme functions will help you do a lot of customization, not just renaming text. Or, you can enable the Locale module and use that to "translate" all occurrences of "Shopping cart" to whatever you want. This method only customizes the text strings for you, but it too can be useful.

--

<tr>.

Posts: 18
Joined: 12/27/2007

Thanks!