We just realized that some customers were abandoning Checout-step3 because they received a “Credit Card Number is incorrect” message.
The problem is that some customers are entering spaces with their credit card numbers as it shows on their card xxxx xxxx xxxx xxxx
Smart programming would take care of this problem by stripping all spaces or dashes, however this is not available here. Also, the message above cannot be edited.
to help aleviate this problem fine
replace with
This will put a message in the box that says not to enter spaces.
The problem is that some customers are entering spaces with their credit card numbers as it shows on their card xxxx xxxx xxxx xxxx
Smart programming would take care of this problem by stripping all spaces or dashes, however this is not available here. Also, the message above cannot be edited.
to help aleviate this problem fine
Code:
[CustomerInfo_creditcardnumber]</b></td><td><input type="text" name="ff[id]_ocardno" size="30" class="txtBoxStyle">
Code:
[CustomerInfo_creditcardnumber]</b></td><td><input type="text" name="ff[id]_ocardno" size="30" class="txtBoxStyle" value="Numbers only. No spaces" onClick="this.value=''">
Comment