Advertisement
CodeDropz

WooCommerce - Inject JS Code in Footer

Jan 19th, 2024
1,051
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.48 KB | None | 0 0
  1. function add_custom_js_to_footer() {
  2. ?>
  3.     <script type="text/javascript">
  4.         jQuery(document).ready(function($){
  5.             document.addEventListener('dndmfu_completed', function(event){
  6.                 var totalFile = event.detail.total;
  7.                 if( totalFile > 0 ){
  8.                     jQuery('input[name="quantity"]').val( totalFile );
  9.                 }
  10.             });
  11.         });
  12.     </script>
  13. <?php
  14. }
  15. add_action('wp_footer', 'add_custom_js_to_footer');
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement