Zen Cart Logo
Forums / General Questions / changing titles in shopping cart

changing titles in shopping cart

Locked

Views: 922

Results 1 to 6 of 6
This thread is locked. New replies are disabled.
5 Mar 2009, 10:43 PM
#1
tellam avatar

tellam

New Zenner

Join Date:
Mar 2009
Posts:
9
Plugin Contributions:
0

changing titles in shopping cart

In the shopping cart page, I want to change the headers (ie Qty. Item Name Unit Total )

How can I do this please?

5 Mar 2009, 10:50 PM
#2
pglad avatar

pglad

Zen Follower

Join Date:
Jun 2007
Posts:
198
Plugin Contributions:
0

Re: changing titles in shopping cart

You'll find these in the languge file at includes - languages - english.php

Copy english.php to includes - languages - yourtemplate -english.php before making changes.

5 Mar 2009, 10:51 PM
#3
tellam avatar

tellam

New Zenner

Join Date:
Mar 2009
Posts:
9
Plugin Contributions:
0

Re: changing titles in shopping cart

I checked the page source and got this:

<tr class="tableHeading"> <th scope="col" id="scQuantityHeading">Qty.</th> <th scope="col" id="scUpdateQuantity"> </th> <th scope="col" id="scProductsHeading">Item Name</th> <th scope="col" id="scUnitHeading">Unit</th> <th scope="col" id="scTotalHeading">Total</th> <th scope="col" id="scRemoveHeading"> </th>
 </tr>

no idea where to find this so I can edit it

5 Mar 2009, 10:54 PM
#4
pglad avatar

pglad

Zen Follower

Join Date:
Jun 2007
Posts:
198
Plugin Contributions:
0

Re: changing titles in shopping cart

tellam:

I checked the page source and got this:

<tr class="tableHeading"> <th scope="col" id="scQuantityHeading">Qty.</th> <th scope="col" id="scUpdateQuantity"> </th> <th scope="col" id="scProductsHeading">Item Name</th> <th scope="col" id="scUnitHeading">Unit</th> <th scope="col" id="scTotalHeading">Total</th> <th scope="col" id="scRemoveHeading"> </th> </tr> no idea where to find this so I can edit it

The path to the file you want is in the above post

includes - languages - english.php

Look under '// table headings for cart display and upcoming products'

5 Mar 2009, 10:58 PM
#5
tellam avatar

tellam

New Zenner

Join Date:
Mar 2009
Posts:
9
Plugin Contributions:
0

Re: changing titles in shopping cart

I checked the page source and got this:

<tr class="tableHeading"> <th scope="col" id="scQuantityHeading">Qty.</th> <th scope="col" id="scUpdateQuantity"> </th> <th scope="col" id="scProductsHeading">Item Name</th> <th scope="col" id="scUnitHeading">Unit</th> <th scope="col" id="scTotalHeading">Total</th> <th scope="col" id="scRemoveHeading"> </th>
 </tr>

no idea where to find this so I can edit it

5 Mar 2009, 10:59 PM
#6
tellam avatar

tellam

New Zenner

Join Date:
Mar 2009
Posts:
9
Plugin Contributions:
0

Re: changing titles in shopping cart

PGlad:

You'll find these in the languge file at includes - languages - english.php

Copy english.php to includes - languages - yourtemplate -english.php before making changes.

Thanks very much, works a treat