Categories: Google Analytics and Ecommerce Tracking

Google Analytics Ecommerce Tracking in Volusion

If you are here, I suppose you have already one running eCommerce site using Volusion Ecommerce. In this post you will know all the steps to add ecommerce tracking in Volusion.

Since analytics.js (Universal Code) is latest version of Google Analytics  Code as per now. So we will use Universal code rather that ga.js (Asynchronous Code ).

Here we go….

Volusion Ecommerce

Steps to add google analytics ecommerce tracking code in Volusion:

  • Create Google  Analytics account and get Analytics Tracking Code (click here).
  • Login to Volusion Ecommerce.
  • Add Google Analytics Code to Volusion Ecommerce (click here).
    These are some basic steps to add Analytics code on Volusion Tracking. Next Steps are to add Ecommerce Tracking.
  • Go to Design (Menu).
Volusion Google Analytics Ecommerce Setup 1
  • Click on Site Content (Sub-menu).
  • Search for article 130 (orderFinished.asp) and the below code in that.
<!---- Ecommerce Tracking --->

<script>
ga('require', 'ecommerce');
ga('ecommerce:addTransaction', {
  'id': Order[0],                     // Transaction ID. Required.
  'affiliation': '--',   			// Affiliation or store name.
  'revenue': Order[2],     			// Grand Total.
  'shipping': Order[5],               // Shipping.
  'tax': Order[4]                     // Tax.
});


  // add item might be called for every item in the shopping cart
   // where your ecommerce engine loops through each item in the cart and
   // prints out _addItem for each
   for (var i=0; i < OrderDetails.length; i++)
   {
ga('ecommerce:addItem', {
  'id': OrderDetails[i][0],                     // Transaction ID. Required.
  'name': OrderDetails[i][3],    				// Product name. Required.
  'sku':  OrderDetails[i][2],                 // SKU/code.
  'category': OrderDetails[i][4],         		// Category or variation.
  'price': OrderDetails[i][5],                 // Unit price.
  'quantity': OrderDetails[i][6]                 // Quantity.
});

  }

ga('ecommerce:send');
</script>

I hope, you got whatever looking for. If you think some correction is required or some more information is required, kindly leave you valuable comment or use get in touch form. Thanks.
To know more about Google Tag Implementation, Or any tips and tricks of scripting language, you can go through my other blogs.

Notes On Click

Share
Published by
Notes On Click
Tags: adword remarketingEcommerce trackinggoogle analyticsmagento ecommerce trackingshopify enhance eCommerce settingvolusion

Recent Posts

  • Adword Conversion Tracking
  • Google Adwords Remarketing

Conversion and Remaketing code in BigCommerce

In this blog, you will see how to add Adwords Conversion Tracking and Remarkeing Code in BigCommerce.BigCommerce is one of…

7 years ago
  • Google Analytics and Ecommerce Tracking

Ecommerce Tracking in OpenCart 2.3

Around 6 months back, I had published an article on “How to add GA e-commerce tracking in Opencart“. I am really thankful…

8 years ago
  • Google Analytics and Ecommerce Tracking

Google Analytics Definition and Common Terms

 If you have gone through our previous blog about Google Analytics, you might have sound understanding about Google Analytics and how it…

8 years ago
  • Google Analytics and Ecommerce Tracking

What is Google Analytics and it’s Features?

Do you want to know more about your visitors and how your content is performing?​ Whether you run a website…

8 years ago
  • Google Analytics and Ecommerce Tracking

How to Add Google Analytics in BigCommerce

In this blog, you will see how to add Google Analytics and E-commerce Tracking Code  in BigCommerce. BigCommerce is one of the…

8 years ago
  • Google Analytics and Ecommerce Tracking

Google Analytics and E-commerce Tracking in Miva Merchant

If you have gone through some of previous blog, you might have seen how to install google analytics, e-commerce tracking…

8 years ago