Contact Us form not working
I'm surprised nobody has noticed this yet? I searched in about 5 pages and nada
Both in FF and IE the Contact Us form is not working .. In IE the button LOOKS like it will work but doesnt. In FF the button is greyed out ...
I know its not my system because i had someone else try it too. Plus I have gone to other Dolphin sites and seen the same thing. Solutions?
Look for yourself:
http://connections.pcessentials.biz/contact.phpUsing 6.0.0004
using: Using 6.0.0005
@ connections, that's interesting, but I just checked the Contact Us page on your site and everything works properly. There is a small thing people forget about - valued email address. The submit button won't be active until you type a valued email address - you@domain.com
Regards, Lyubov.
Avant (uses IE engine anyway) also worked for me prior but it never dawned on me about the tabbing effecting the form.
but i find it strange because most people have their email address in the auto complete, so is this not going to confuse people if it confuses webmasters.
i think it might have been done so as to limit automated spam bots, if so, wouldn't a notice warning users to type their email and not copy n paste or use auto complete, have been an idea?
---
And after messing around with this more this morning (using FF) im finding that the only fields that are required are the name and email fields .. and of course entering the captcha. Nothing else and it sends through. In the latest (not sure about previous versions) FF is see more
Around line 112 find:
<form action="<?= $_SERVER['PHP_SELF'] ?>" method="post">
<table class="messageBlock">
Add this after: (edit to your likings)
<tr>
<center><b><font color=red>PLEASE MANUALLY TYPE ALL INFO IN THE FIELDS BELOW</font></b><br>If you still do not get an active submit button<br>use see more
this is what i get when having done all above any suggestions on how to check where the email goes maybe my crons are set up incorrectly any help appreciated its the last thing I have to get to work
appreciated Philipx
Contacts.php line 137 find line...<td colspan="2" class="contact_submit"><input type="submit" name="do_submit" value="<?= _t('_Submit') ?>" disabled="disabled"/>
Change to....<td colspan="2" class="contact_submit"><input type="submit" name="do_submit" value="<?= _t('_Submit') ?>" disable="disabled"/>
eliminates the see more
<td class="contact_value"><input type="text" name="email" value="" class="inputText" onkeyup="if( emailCheck( this.value ) ) this.form.do_submit.disabled=false; else this.form.do_submit.disabled=true;" /></td>
to
<td class="contact_value"><input type="text" name="email" value="" class="inputText" onkeyup="if( see more