I'm trying to get Goal Count for the triggered events on my website.. I've setup two events (click) in javascript, and 2 corresponding Goals in the Google Analytics.
My Analytics Goals are:
- Download Catalog (Zone 1)
- Download Catalog (Zone 2)
Here's a screenshot of how the first Goal is setup...
And in my javascript file, I've setup the following code to be triggered on click of the links. This javascript file has been placed in the <head>
of the document.
/* Google Analytics GOAL Actions */
$(document).ready(function(){
var page_meta = $('meta[name=topic]').attr("content");
if(page_meta.length > 25) page_meta = page_meta.substring(0,25) + '..';
var label_page;
///////// GOAL 1: EVENT :: PDF Download
$('a.g-btn.type_primary').on('click', function() {
label_page = 'Page:: ' + page_meta;
console.log('Download_PDF');
ga('send', 'event', 'Domestic', 'DownloadPDF', label_page, 1);
}); ///////// END GOAL 1
}); //Document Ready() ///
/* END Google Analytics GOAL Actions */
I've created custom labels in the above code, cause I thought labels would be visible in the Goals Overview. This is my first attempt at generating Goals so I have no knowledge in what I'm doing wrong...!
That's mostly all..
Well, I figured this out... I had to create a custom report with the following setup...