Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

adding to contact form


wblandt

Recommended Posts

Posted

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.

Posted

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.

Posted

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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...