When re-filling fields on checkout, only change the empty ones.
This commit is contained in:
parent
31651e41cb
commit
438e1aeeea
|
@ -331,7 +331,7 @@ jQuery( function( $ ) {
|
||||||
$( '#terms' ).prop( 'checked', true );
|
$( '#terms' ).prop( 'checked', true );
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fill in the payment details if possible
|
// Fill in the payment details if possible without overwriting data if set.
|
||||||
if ( ! $.isEmptyObject( paymentDetails ) ) {
|
if ( ! $.isEmptyObject( paymentDetails ) ) {
|
||||||
$( '.payment_box input' ).each( function() {
|
$( '.payment_box input' ).each( function() {
|
||||||
var ID = $( this ).attr( 'id' );
|
var ID = $( this ).attr( 'id' );
|
||||||
|
@ -339,7 +339,7 @@ jQuery( function( $ ) {
|
||||||
if ( ID ) {
|
if ( ID ) {
|
||||||
if ( $.inArray( $( this ).attr( 'type' ), [ 'checkbox', 'radio' ] ) !== -1 ) {
|
if ( $.inArray( $( this ).attr( 'type' ), [ 'checkbox', 'radio' ] ) !== -1 ) {
|
||||||
$( this ).prop( 'checked', paymentDetails[ ID ] ).change();
|
$( this ).prop( 'checked', paymentDetails[ ID ] ).change();
|
||||||
} else {
|
} else if ( 0 === $( this ).val().length ) {
|
||||||
$( this ).val( paymentDetails[ ID ] ).change();
|
$( this ).val( paymentDetails[ ID ] ).change();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue