| ||||||||||
Shopping cart software Solutions for online shops and malls | ||||||||||
|
X-Cart Home | FAQ | Forum rules | Calendar | User manuals | Login |
Using Javascript to confirm email address? | ||||
|
|
Thread Tools | Search this Thread |
#1
|
|||||||
|
|||||||
Using Javascript to confirm email address?
In order to cut back on mistyped email addresses and customers complaining about not receiving an order confirmation because they didn't type their email correctly, I was thinking about having an added filed to the registration.
Email Address and the new: Confirm Email address I was trying to see if I could implement the other java validations already there, ie zipcode validation but that didn't seem to work. How does the password and confirm password validation work? I couldn't find any java code for it. Thanks for reading, I think this is a much needed feature. |
|||||||
#2
|
|||||||||
|
|||||||||
This is a problem in every store, specifically for someone like me who deals with adolescent boys and young men. People who cannot be bothered to type their name, address or email properly.
This would be a nice feature. |
|||||||||
#3
|
|||||||
|
|||||||
I created a new field "email2" and tried adding this code to include/register.php
Code:
but then i got a page error when trying to use register on the customer side, I think i have to try to implement it into register.tpl rather than register.php, anyone know how to make the above code smarty friendly? thanks |
|||||||
#4
|
|||||||
|
|||||||
You could do some javascript regex checking before they submit the form
But i am not sure on your intetions, did you want to make it so that they enter 2 e-mail addresses and you compare them? If so you have to add both fields to register.tpl Then you *should* be able to use them in register.php if you have any problems just bug me i'm around alot.
__________________
Mod King |
|||||||
#5
|
|||||||||
|
|||||||||
First edit skin1/check_email_script.tpl, replace its entire contents with:
Code:
Now open up skin1/main/register_contact_info.tpl and underneath the email table row (</tr>) add this: Code:
This way your not inserting two emails into the database but rather making sure the user has entered the same values into the email field incase of misstypes. All javascript based. Above code was written with 3.5.x
__________________
Cart-Lab - 100+ Social Bookmarks for X-Cart. |
|||||||||
#6
|
|||||||
|
|||||||
works like a charm,
THANK YOUUUUUUUUUU BOOOMER! |
|||||||
#7
|
|||||||||
|
|||||||||
Should be standard in X-Cart. RRF are you awake right now?
|
|||||||||
#8
|
|||||||
|
|||||||
Ah, this was the culprit! After a day of modding I wasn't able to test the gift certificate purchase. I finally found out that this javascript although very effective for validating the email during checkout and register (thank you Boomer) does not allow a gift cert to be purchased. I tried to see if other functions that require email such as contact us had the same problem but it was only gift certificates.
Boomer, Could you modify the java code to exclude its effect on giftcerts or could you tell me what I would have to add to giftcert.tpl for it to work properly? Thanks |
|||||||
#10
|
|||||||
|
|||||||
For a little more explicite directions, for those of us "code challenged", along with the two code updates above from Boomer (call them step 1 and step 2), do this to make the gift certificate email validation operational also:
Step 3: create a new file called [cart directory]/skin1/check_gcemail_script.tpl with contents: Code:
Step 4: in the file [cart directory]/skin1/modules/Gift_Certificates/giftcert.tpl changed include on line 3 to call my new file for giftcert email validation: replace: Code:
Code:
around line 29, to call the new function created in Step 3 above: replace: Code:
Code:
around line 203, ADD the second email field to the gift certificate purchase form, with a few changes from the one in the registration form: Code:
Please Note that I have not thoroughly tested everything. The contact us form still works fine, gift cert purchase works fine, registration (thanks Boomer) works fine. Please post here if you find other problems. Jean
__________________
Linux / Apache 1.3.31 PHP 4.3.3 MySQL 4.0.18 X-Cart 3.5.4 in production Mar 08, 2004 X-Cart 3.5.4 Win2k SP4 for development |
|||||||
|
|||
X-Cart forums © 2001-2020
|