diff --git a/assets/js/dokan.js b/assets/js/dokan.js index 52782a0ef7..bae6c1ac20 100644 --- a/assets/js/dokan.js +++ b/assets/js/dokan.js @@ -997,6 +997,9 @@ jQuery(function($) { if ( $parent.is( '.taxonomy' ) ) { $parent.find( 'select, input[type=text]' ).val( '' ); $( 'select.dokan_attribute_taxonomy' ).find( 'option[value="' + $parent.data( 'taxonomy' ) + '"]' ).removeAttr( 'disabled' ); + } else { + $parent.find( 'select, input[type=text]' ).val( '' ); + $parent.hide(); } Dokan_Editor.attribute.reArrangeAttribute(); @@ -1469,19 +1472,19 @@ jQuery(function($) { sale_price_parent_div.remove(); sale_price_input_div.after( sale_price_input_msg ); - + sale_price_wrap.val(''); - setTimeout(function(){ + setTimeout(function(){ sale_price_parent_div.remove(); }, 5000); } else if( parseFloat( product_price ) <= parseFloat( sale_price ) ) { - + sale_price_parent_div.remove(); sale_price_input_div.after( sale_price_input_msg ); - + sale_price_wrap.val(''); - setTimeout(function(){ + setTimeout(function(){ sale_price_parent_div.remove(); }, 5000); @@ -1490,7 +1493,7 @@ jQuery(function($) { sale_price_parent_div.remove(); } - + } ,600 ) ); }); diff --git a/assets/src/js/product-editor.js b/assets/src/js/product-editor.js index 03b91c1e4f..5a776b46c0 100755 --- a/assets/src/js/product-editor.js +++ b/assets/src/js/product-editor.js @@ -434,6 +434,9 @@ if ( $parent.is( '.taxonomy' ) ) { $parent.find( 'select, input[type=text]' ).val( '' ); $( 'select.dokan_attribute_taxonomy' ).find( 'option[value="' + $parent.data( 'taxonomy' ) + '"]' ).removeAttr( 'disabled' ); + } else { + $parent.find( 'select, input[type=text]' ).val( '' ); + $parent.hide(); } Dokan_Editor.attribute.reArrangeAttribute(); @@ -906,19 +909,19 @@ sale_price_parent_div.remove(); sale_price_input_div.after( sale_price_input_msg ); - + sale_price_wrap.val(''); - setTimeout(function(){ + setTimeout(function(){ sale_price_parent_div.remove(); }, 5000); } else if( parseFloat( product_price ) <= parseFloat( sale_price ) ) { - + sale_price_parent_div.remove(); sale_price_input_div.after( sale_price_input_msg ); - + sale_price_wrap.val(''); - setTimeout(function(){ + setTimeout(function(){ sale_price_parent_div.remove(); }, 5000); @@ -927,7 +930,7 @@ sale_price_parent_div.remove(); } - + } ,600 ) ); });