Advertisement
filipr27

extract item ids

May 14th, 2024
508
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function(){  
  2.   var prods = {{WP - GA4 - ecommerce.items}};
  3.   var skus = [];
  4.   var i;
  5.   if (!prods) { return; }
  6.   for (i = 0; i < prods.length; i++) {
  7.     if (prods[i].item_id) { skus.push(prods[i].item_id); }
  8.   }
  9.   return skus.join(',');
  10.  }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement