Zen Cart Logo
Forums / Basic Configuration / Add to Cart Area: Units

Add to Cart Area: Units

Locked

Views: 1,186

Results 1 to 6 of 6
This thread is locked. New replies are disabled.
05 Jul 2006, 15:34
#1
designbydemeter avatar

designbydemeter

Zen Follower

Join Date:
Jun 2006
Location:
Taos,NM
Posts:
225
Plugin Contributions:
0

Add to Cart Area: Units

I did my due diligence searching the forums to no avail. So:

I've been getting a lot (a lot!) of feedback from confused users. My minimum, lets say is 50 invitations, so the Add to cart box is automatically populated with '50'. My quantities to order are blocks of 10.

***However, ***users seem to think that means 500 invitations; or if they order 10 invitations (which gives them an error because its below minimum), they are ordering 100 invites, because "Units" says 10.

Where can I modify this to say ea. instead of units or something that users will not misunderstand.

Your help is appreciated as I think is losing me sales.

Very best regards,
Laura

05 Jul 2006, 16:39
#2
kim avatar

kim

Obaa-san

Join Date:
Jun 2003
Posts:
26,590
Plugin Contributions:
0

Re: Add to Cart Area: Units

Laura-

Hopefully we have done our job well and made that label a constant that can be changed in a language file.

Open your Admin> Tools> Developers Tool Kit. Enter the word units in the input box on the lower left, choose All Files, Click Go, and it should bring up a list of al the files where that word is found. Find the appropriate language define and change to your heart's content.

05 Jul 2006, 17:06
#3
designbydemeter avatar

designbydemeter

Zen Follower

Join Date:
Jun 2006
Location:
Taos,NM
Posts:
225
Plugin Contributions:
0

Re: Add to Cart Area: Units

You rock! I will check that out and report back.
Thanks,
Laura

05 Jul 2006, 17:11
#4
designbydemeter avatar

designbydemeter

Zen Follower

Join Date:
Jun 2006
Location:
Taos,NM
Posts:
225
Plugin Contributions:
0

Re: Add to Cart Area: Units

Dear Kim,

There seem to be a couple of hundred files in all different groups. Being that I don't know my 'function' from my 'cl-ass', Could you guide me as to what would control the verbiage in the "Buy now" box where the Min. and Units appear.

Thanks so much,
Laura

05 Jul 2006, 18:28
#5
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: Add to Cart Area: Units

You only care about the language files ...

The define statements are where the word unit or units would appear and then display on screen ...

Example:

/includes/languages/english.php

Line #381 : define('TEXT_PRODUCT_WEIGHT_UNIT','lbs');

Line #446 : define('PRODUCTS_QUANTITY_UNIT_TEXT_LISTING','Units:');

Line #470 : define('ERROR_PRODUCT_QUANTITY_UNITS',' ... Quantity Units errors - ');

Line #475 : define('ERROR_PRODUCT_QUANTITY_UNITS_SHOPPING_CART',' ... Quantity Units errors - ');

Where it is used in code ... you would leave those alone

If you see on screen the word: units:

Search for: unit:

If you see on screen the word: unit:

Search for: units:

05 Jul 2006, 18:34
#6
designbydemeter avatar

designbydemeter

Zen Follower

Join Date:
Jun 2006
Location:
Taos,NM
Posts:
225
Plugin Contributions:
0

Re: Add to Cart Area: Units

Mille Grazie!