Inactive
- Join Date:
- Oct 2007
- Posts:
- 187
- Plugin Contributions:
- 0
Contact Us Subject
Does anyone know where I can edit the subject line that the contact us page inserts in by itself?
Views: 1,613
Inactive
Does anyone know where I can edit the subject line that the contact us page inserts in by itself?
Totally Zenned
includes/languages/english/YOUR_TEMPLATE/contact_us.php
If it doesn't exist in includes/languages/english/YOUR_TEMPLATE/, copy it from includes/languages/english/.
Inactive
afo:
includes/languages/english/YOUR_TEMPLATE/contact_us.php
If it doesn't exist in includes/languages/english/YOUR_TEMPLATE/, copy it from includes/languages/english/.
I am not finding any subject line in either of those files. It's not something the customer actually will see but it is something that is sent to us when they send an e-mail. Does that make sense?
Totally Zenned
The line is in there. I highlighted it below in red.
<?php
/**
* @package languageDefines
* @copyright Copyright 2003-2006 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: contact_us.php 3149 2006-03-10 07:29:34Z birdbrain $
*/
define('HEADING_TITLE', 'Contact Us');
define('NAVBAR_TITLE', 'Contact Us');
define('TEXT_SUCCESS', 'Your message has been successfully sent.');
define('EMAIL_SUBJECT', 'Message from ' . STORE_NAME);
define('ENTRY_NAME', 'Full Name:');
define('ENTRY_EMAIL', 'Email Address:');
define('ENTRY_ENQUIRY', 'Message:');
define('SEND_TO_TEXT','Send Email To:');
define('ENTRY_EMAIL_NAME_CHECK_ERROR','Sorry, is your name correct? Our system requires a minimum of ' . ENTRY_FIRST_NAME_MIN_LENGTH . ' characters. Please try again.');
define('ENTRY_EMAIL_CONTENT_CHECK_ERROR','Did you forget your message? We would like to hear from you. You can type your comments in the text area below.');
?>
Inactive
AHHH I see it now. Thanks so much! You are a legend!
Totally Zenned
cs_jono:
AHHH I see it now. Thanks so much! You are a legend!
Only in my own mind. :laugh:
Tell staff why this post should be reviewed.