Values of fields not updated and error when they are modified by extension
-
Hello,
Problem : the attribute “value” of text checkout fields (and maybe droplist and others kinds of fields) are not updated ! An easy way to check it is to select a delivery address different from the billing address and you will see that the new delivery shipping address is not taken into account.
I have find a temporary solution until the bug will be corrected :
$( document ).ready(function() {
$( ‘.wpfnl-checkout input[type=”text”]’ )
.keyup(function() {
$( this ).attr(‘value’,$( this ).val()) ;})
.keyup();});
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Values of fields not updated and error when they are modified by extension’ is closed to new replies.