Advertisement
CodeDropz

WooCommerce - Change QTY based on no. of uploads

Oct 10th, 2022 (edited)
1,197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. document.addEventListener('dndmfu_on_success', function(event){
  2.     var totalFile = event.detail.total;
  3.     if( totalFile > 0 ){
  4.         $('input[name="quantity"]').val( totalFile );
  5.     }
  6. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement