Advertisement
Guest User

Untitled

a guest
Mar 29th, 2020
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1.  
  2. add_action('wp_footer','wapf_custom_addcart');
  3. function wapf_custom_addcart() {
  4. ?>
  5. <script>
  6. jQuery(document).on('adding_to_cart',function(e,d,a){
  7. for(var i = 0;i<a.length;i++) {
  8. if(a[i].name && a[i].name.indexOf('wapf[') > -1)
  9. a.splice(i,1);
  10. }
  11. var o = jQuery('.wapf-wrapper :input').serializeArray();
  12. o.forEach(function(ob){
  13. a.push({name:ob.name,value: ob.value});
  14. });
  15. });
  16. </script>
  17. <?php
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement