Page 1 of 1
Contact Us Form is not working
Posted: Thu Sep 10, 2009 10:42 am
by saraspixels
Simple issue that must be fixed before I can go live. My contact us form is not working. I tested it on FireFox 3 and IE 7 (so I'm assuming it's not browser related.
I get no errors...nothing happens when I click "Continue".
My site is
http://saraspixelstudio.com/store if you want to try...
Please don't answer in webmaster code (i.e. fix db php sql mkpwy....and the fb dmb) -- I don't speak that stuff
~Sara
Re: Contact Us Form is not working
Posted: Fri Sep 11, 2009 12:07 am
by saraspixels
PLEASE someone help me! I have no clue how to fix this and I can't afford the money for the support ticket credits

Re: Contact Us Form is not working
Posted: Fri Sep 11, 2009 2:11 am
by dbstr
Weird.
Could you try open contact.tpl, and replace
Code: Select all
<form action="<?php echo $action; ?>" method="post" enctype="multipart/form-data" id="contact">
with
Code: Select all
<form action="<?php echo $action; ?>" method="post" enctype="multipart/form-data" id="contact" name="contact">
and
Code: Select all
<a onclick="$('#contact').submit();" class="button">
with
Code: Select all
<a onClick="document.contact.submit()" class="button">
And tell me if that works? I suspect it's there it stops working, but I can't seem to find the missing link.
Re: Contact Us Form is not working
Posted: Fri Sep 11, 2009 8:49 am
by saraspixels
You ROCK! Thanks so much! Works like a charm now

Re: Contact Us Form is not working
Posted: Fri Sep 11, 2009 8:58 am
by dbstr
I hope it stays that way then

Cool design btw
Re: Contact Us Form is not working
Posted: Fri Oct 02, 2009 3:52 am
by saraspixels
So far so good
Thanks!
Re: Contact Us Form is not working
Posted: Sat Oct 03, 2009 1:55 am
by dbstr
Just had some spare time and was looking again. It's because you got another
id="contact"
Code: Select all
<div style="float: right;"><a href="http://saraspixelstudio.com/store/index.php?route=information/contact"><div id="contact"></div></a>
If you change that to something else, it will work with the default
$('#contact').submit(); ..
Re: Contact Us Form is not working
Posted: Sat Oct 03, 2009 6:50 am
by Daniel
thats a really nice site!
Re: Contact Us Form is not working
Posted: Sat Oct 03, 2009 9:02 am
by saraspixels
Thanks!
