Tracking multiple conversions with Convert

Convert Experiences goals only track the first conversion of a visitor bucketed on an experiment. However, sometimes it might be pertinent to track multiple conversions. 

The only way to track multiple conversions is using the Convert Experiences goal revenue send code. 

This code would need to be integrated into anything you are tracking, but you need to integrate the code to the event that you want to track. 

So, you cannot track multiple goals with normal URL Goals, Click Goals, Form Submission Goals, Advanced Goals unless you use the code to submit them.

The code submitting multiple conversions would look like:

// Replace the 123456789 with your goal id
window._conv_q = window._conv_q || [];
window._conv_q.push(["pushRevenue","1","1","123456789","force_multiple"]);

Then in the report, you will need to look at the data differently. Look at Revenue in the place of Visitors, and you will have to look at Revenue per Visitor instead of Conversion Rate

71