Quote Originally Posted by HTMLGoddess View Post
PHP Code:
define('EMAIL_CONTACT''For help with any of our online services, please email the store-owner: <a href="mailto:' STORE_OWNER_EMAIL_ADDRESS '">'STORE_OWNER_EMAIL_ADDRESS ." </a>\n\n"); 
I want to change the text to: 'For help with any of our services, contact us at [email protected]. We will respond within 24 hours to all inquiries.'
Quite simple really ... just replace the existing defined value with your new value:


[FONT="Courier New"]define('EMAIL_CONTACT', 'For help with any of our services, contact us at [email protected]. We will respond within 24 hours to all inquiries.');[/FONT]

If you want to add HTML markup to part of it, just add the HTML as you would normally ... keeping in mind that you're working inside a set of single-quotes, so you don't want to be using any single-quotes inside there or you'll end up with challenges.