well there are a few answers to that.
if your referring to the tab (button) that is a module/header.php
if you want to change it on the checkout process/cart page they can be found in the controller folder with the respective names you see in the url
these are all located in calalog/language
Jonathon
if your referring to the tab (button) that is a module/header.php
if you want to change it on the checkout process/cart page they can be found in the controller folder with the respective names you see in the url
these are all located in calalog/language
Jonathon
I mean the Shopping Cart in the main menu see this http://www.fishagift.com/cart
there is 3 section
1.Currency
2.Shopping Cart
3.Categories
I want to change the name of the 2nd section only the TEXT to Shopping Bag
there is 3 section
1.Currency
2.Shopping Cart
3.Categories
I want to change the name of the 2nd section only the TEXT to Shopping Bag
you can change catalog/template//module/cart.tpl in there paste this code
-Dave
Code: Select all
<div class="box">
<div class="heading">Shopping Bag</div>
<div class="cart">
<?php if ($products) { ?>
<table>
<?php foreach ($products as $product) { ?>
<tr>
<td><?php echo $product['quantity']; ?> x </td>
<td><a href="<?php echo $product['href']; ?>"><?php echo $product['name']; ?></a></td>
</tr>
<?php } ?>
</table>
<div class="a"><?php echo $text_subtotal; ?> <?php echo $subtotal; ?></div>
<?php } else { ?>
<div class="b"><?php echo $text_empty; ?></div>
<?php } ?>
</div>
</div>
Last edited by david.gilbert on Sun Jul 06, 2008 8:44 pm, edited 1 time in total.
Professional Website Services - http://www.davidmgilbert.com/
Active Member
Better to change the relevant language file, rather than the raw code which calls it:
catalog->language->english->extension->module->cart.php
You'll also want to change references in certain other language files to ensure consistent reference to a shopping bag.
Chris
catalog->language->english->extension->module->cart.php
You'll also want to change references in certain other language files to ensure consistent reference to a shopping bag.
Chris
Chris @ SiteE@se Web Design
Who is online
Users browsing this forum: No registered users and 1 guest