djr3110 Posted November 4, 2005 Posted November 4, 2005 Hello, I have a shop set up and ready to hand over to the customer. I have given up with SMTP email as it is driving me mad used the contributions all of them generate and error. I'll solve them in time. However for some reason I can't for the life of me find the instructions to change the bits of the Address Book from State to County and Suburb to Region etc. In short how do you change the address book headers. Looked long and hard on the forum but to no avail it must be too easy - but I'm stuck, DJR :blush:
kgt Posted November 4, 2005 Posted November 4, 2005 In includes/languages/english.php: define('ENTRY_SUBURB', 'Suburb:'); define('ENTRY_SUBURB_ERROR', ''); define('ENTRY_SUBURB_TEXT', ''); define('ENTRY_POST_CODE', 'Zip Code:'); define('ENTRY_POST_CODE_ERROR', 'Your Zip Code must contain a minimum of ' . ENTRY_POSTCODE_MIN_LENGTH . ' characters.'); define('ENTRY_POST_CODE_TEXT', '*'); define('ENTRY_CITY', 'City:'); define('ENTRY_CITY_ERROR', 'Your City must contain a minimum of ' . ENTRY_CITY_MIN_LENGTH . ' characters.'); define('ENTRY_CITY_TEXT', '*'); define('ENTRY_STATE', 'State:'); define('ENTRY_STATE_ERROR', 'Your State must contain a minimum of ' . ENTRY_STATE_MIN_LENGTH . ' characters.'); define('ENTRY_STATE_ERROR_SELECT', 'Please select a state from the States pull down menu.'); define('ENTRY_STATE_TEXT', '*'); define('ENTRY_COUNTRY', 'Country:'); define('ENTRY_COUNTRY_ERROR', 'You must select a country from the Countries pull down menu.'); define('ENTRY_COUNTRY_TEXT', '*'); Contributions Discount Coupon Codes Donations
djr3110 Posted November 6, 2005 Author Posted November 6, 2005 Thanks for your reply - just wondered though if I change say for instance the following bit define('ENTRY_STATE_ERROR', 'Your State must contain a minimum of ' . ENTRY_STATE_MIN_LENGTH . ' characters.'); define('ENTRY_STATE_ERROR_SELECT', 'Please select a state from the States pull down menu.'); so that all the bits that say 'STATE' would say 'COUNTY' would this work? Or do I need to do something else - sorry for such a dumb question. But I don't want to mess up my existing data. Cheers
kgt Posted November 7, 2005 Posted November 7, 2005 Don't change anything in CAPS. Just change the second part. ex: define('ENTRY_SUBURB', 'Region:'); Contributions Discount Coupon Codes Donations
Recommended Posts
Archived
This topic is now archived and is closed to further replies.