Hello I have been trying to fire a utag.view on the show of a certain modal. This part works, the pageview can be seen in developer tools and the tags I set all fire - but for some reason the 'dummy' page name I am trying to send reverts back to the actual name of the page by the time it is sent to google (which can be observed happening in the console). if ((jQuery('#declineRD.modal.fade.in').is(':visible')) ||
(jQuery('#declineR7.modal.fade.in').is(':visible')))
{ var id = $(this).attr("id");
var decision = id.substr(id.length - 2);
var data = {};
data.event_category = "app decision";
data.event_action = "full app posted";
data.event_label = decision;
data.pg_nme = "Thank You";
// push decision into data layer if decline
utag.data.application_status = decision;
utag.data.pg_nme = "Thank You";
console.log(utag.data.pg_nme);
// these are the tags we want to fire on a decline decision - update where necessary
utag.view(data, null , [2, 16, 4, 8, 21, 23, 30, 32]);
} So I am setting the page name in utag.data which I think should be picked up and sent (it is mapped to pg_nme in the GA tag). Any ideas?
... View more