How to track page views manually

If your website changes views without changing the URL, you need to track the page view manually to see it in your analytics. 

You do so by telling Extellio whenever the URL and page title changes. You use the methods setCustomUrl and setDocumentTitle: 

extellio_actions.push(['setCustomUrl', '/nameofpage’]);

extellio_actions.push(['setDocumentTitle', 'My New Title']);

extellio_actions.push(['trackPageView']);