The company's website tracking was set up using DTM, and the data from sitecatalyst don't match server logs. I notice there are a few rules in the system which I have question with.
1) A "dynamic page name" rule which has the js code as follows:
var pagePath = window.location.pathname;
var pageName = pagePath;
while(pageName.charAt(0) === '/'){
pageName = pageName.substr(1);
}
//set Page Name
s.pageName = pageName.split('/').join(' > ');
s.pageURL = pagePath;
2) a home page rule which fires on a condition when path includes '/' and this rule fires on every page load. However, there is no eVar or prop assigned for this rule.
3) there are also page load rules set up for different individual page, with eVar assigned but no prop.
My question: the first rule looks like doing a job of capturing each page name of the site. What about rule 2) and 3)? Since there is no props assigned, will the page view counts still be passed to Adobe and shown in the reports?