Fix bulk editing variation sale price #5164

This commit is contained in:
Juraj Kiss 2014-03-18 13:51:10 +01:00
parent 7bce58e9a1
commit 888d57911c
2 changed files with 2 additions and 2 deletions

View File

@ -261,7 +261,7 @@ jQuery( function ( $ ) {
case 'variable_download_expiry' :
value = window.prompt( woocommerce_admin_meta_boxes_variations.i18n_enter_a_value );
$( ':input[name^="' + bulk_edit + '["]').val( value ).change();
$( ':input[name^="' + bulk_edit + '"]').not('[name*="dates"]').val( value ).change();
break;
default:
$( 'select#field_to_edit' ).trigger( bulk_edit );

File diff suppressed because one or more lines are too long