PDA

View Full Version : New Customer


eee
10-03-2005, 11:18 PM
i want to change the text in the check out box that says new customer
i tried changing the appropriate text in the shopping/pgm-checkout.php file
but when i do nothing shows up in that box on the browser
how can i accomplish that

Ruben
10-04-2005, 08:24 AM
Hi,

I think you did everything ok, but try to logout and login again, so all new files get copied to the root.
If that not helps, copy the pgm-checkout.php you just changed to your root dir of the site (where all other pgm files.

Ruben

Cameron Allen
10-04-2005, 12:40 PM
The file you are looking for is english.php, which is found in the /sohoadmin/language/ folder. In the folder search for

new customer


It should be found on line 1721 and look like this:

$lang["New Customer"] = "New Customer";


If you wanted to change this to say "Valued Customer" you would change the second instance of the phrase. For example:


$lang["New Customer"] = "Valued Customer";


Note that the first instance of text stays the same. Also make sure that you change your pgm-checkout.php file back to say :


if ( strlen($lang["New Customer"]) < 4 ) {

eee
10-04-2005, 06:29 PM
thnx cameron
it works


The file you are looking for is english.php, which is found in the /sohoadmin/language/ folder. In the folder search for

new customer


It should be found on line 1721 and look like this:

$lang["New Customer"] = "New Customer";


If you wanted to change this to say "Valued Customer" you would change the second instance of the phrase. For example:


$lang["New Customer"] = "Valued Customer";


Note that the first instance of text stays the same. Also make sure that you change your pgm-checkout.php file back to say :


if ( strlen($lang["New Customer"]) < 4 ) {