Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / How to remove the "Send" Button from Contact Us Page?

How to remove the "Send" Button from Contact Us Page?

Locked

Views: 1,209

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
26 Aug 2009, 6:16 PM
#1
wintergreenaaron avatar

wintergreenaaron

New Zenner

Join Date:
Jul 2009
Posts:
2
Plugin Contributions:
0

How to remove the "Send" Button from Contact Us Page?

I am currently in the process of changing over our website. In the Contact Us section, I have recently removed the standard "contact us form" for our own form by adding #contactUsForm{display:none;} to the stylesheet. However, I still have the "Send" button showing on my site and have been unable to find out where and how I can remove this. Can someone please point me in the right direction as to how I am able to remove this button? It is located towards the bottom of this link: http://www.wintergreensys.com/index.php?main_page=contact_us.

Thank you for any help that you may be able give me!

26 Aug 2009, 7:11 PM
#2
jc8125 avatar

jc8125

Zen Follower

Join Date:
Oct 2007
Posts:
143
Plugin Contributions:
0

Re: How to remove the "Send" Button from Contact Us Page?

go into includes/templates/YOUR_TEMPLATE/templates/tpl_contact_us_default.php, find the following line

<div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_SEND, BUTTON_SEND_ALT); ?></div>

change it to:

<?php /*<div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_SEND, BUTTON_SEND_ALT); ?></div>*/?>

but keep in mind, the way you have customers contacting you is through a direct "mailto:" link, which opens a new email window in their email client. any customer that doesn't have outlook or a mail client on their pc (eg: if they are using a web-based email like yahoo, gmail, etc) won't be able to easily email you. (just my 2 cents)

26 Aug 2009, 7:58 PM
#3
wintergreenaaron avatar

wintergreenaaron

New Zenner

Join Date:
Jul 2009
Posts:
2
Plugin Contributions:
0

Re: How to remove the "Send" Button from Contact Us Page?

Thank you very much for your help. Your directions worked perfectly! I also greatly appreciate your input on the email issue I would run into for customers.

The reason I initially wanted to remove the form and "send" button was because when you would click the "Contact Us" link, it would take you immediately down to the bottom of the page in the form portion bypassing our other information. I imagine I am able to move the form and send button towards the top of the page which would give customers every opportunity to email. I will take a look at that option.

Thanks again for your help and comments!