Advertisement
Guest User

bluetime -ga ecommerce tag

a guest
Jul 19th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // START E-COMMERCE TAG
  2. jQuery(document).ready(function(){
  3.  
  4. var price = jQuery(".total-amount:last").html().replace("€" , "");
  5.  
  6. var convertPriceToNumber = parseFloat(price);
  7.  
  8. var transact_id = jQuery(".page-title").text().replace("Commande " , "");
  9.        
  10.         ga('require', 'ecommerce');
  11.  
  12.         ga('ecommerce:addTransaction', {
  13.           'id': transact_id,                    // Transaction ID. Required.
  14.           'revenue': convertPriceToNumber,      // Grand Total.
  15.  
  16.         });
  17.         ga('ecommerce:send');
  18.  
  19. });
  20. // END OF E-COMMERCE TAG
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement