wblandt Posted October 4, 2011 Posted October 4, 2011 I want to add (Not for product offers, commercial offers or other solicitations) to my contact form. I want to add it below where it says Contact Us. I don't need it to have it in the form just to say it on the page. I am using version 2.3.1 Thanks for any help in advance.
ctec2001 Posted October 4, 2011 Posted October 4, 2011 Add the below code to...includes/languages/english/contact_us.php Find: define('NAVBAR_TITLE', 'Contact Us'); Add this after ther above: define('caption', 'Not for product offers, commercial offers or other solicitations'); Add the below code to...contact_us.php Find: <div class="buttonSet"><br /> <span class="buttonAction"><?php echo tep_draw_button(IMAGE_BUTTON_CONTINUE, 'triangle-1-e', null, 'primary'); ?></span> </div> <br /> Add this code before the above: <div><br /> <?php echo caption; ?> </div> <br /> This should work...Let me know if this helps Michael Do or Do Not, there is no try.
wblandt Posted October 4, 2011 Author Posted October 4, 2011 The code you gave me put it after the form just before the submit. That is below contact us. Thanks
ctec2001 Posted October 4, 2011 Posted October 4, 2011 Add the below code to...contact_us.php Find: <h1><?php echo HEADING_TITLE; ?></h1> Insert right below the above code: <div> <?php echo caption; ?> </div> This should place it right below the Contact Us. Let me know... Michael Do or Do Not, there is no try.
ctec2001 Posted October 6, 2011 Posted October 6, 2011 Glad i can help. Do or Do Not, there is no try.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.