diff options
-rw-r--r-- | templates/web/fixmystreet.com/tracking_code.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/templates/web/fixmystreet.com/tracking_code.html b/templates/web/fixmystreet.com/tracking_code.html index 1dd176189..42e71776d 100644 --- a/templates/web/fixmystreet.com/tracking_code.html +++ b/templates/web/fixmystreet.com/tracking_code.html @@ -9,6 +9,16 @@ ga('create', 'UA-660910-4', {'cookieDomain': '.fixmystreet.com'}); ga('set', 'anonymizeIp', true); [% IF created_report %] ga('require', 'ecommerce'); +ga(function(tracker) { + var page = tracker.get('location'); + var extra = ''; + if ( page.indexOf('?') != -1 ) { + extra = '&created_report=1'; + } else { + extra = '?created_report=1'; + } + tracker.set('location', page + extra); +}); ga('ecommerce:addItem', { 'id': 'report/[% problem.id %]', 'name': 'Report' |