Tagged: events, google analytics
Hi,
This is not an enfold specific problem, but the support on this forum is so incredible that I thought I would give it a shot:
I setup event tracking in the footer of my theme:
(function($){
$(window).load(function() {
$('.free-quote .button').on('click', function() {
ga('send', 'event', 'RFQ - Home Page', 'click', 'Estimates');
});
$('.quote-form .button').on('click', function() {
ga('send', 'event', 'RFQ - Residential Services', 'click', 'Estimates');
});
});
})(jQuery);
I setup a goal in Google Analytics:
Category Equals to RFQ – Residential Services
Action Equals to click
Label Equals to Estimates
Value Equals to 0
My events are working and being recorded by Google Analytics, but they are not being recorded as completed goals.