top of page

How to track page views manually

  • Dec 11, 2025
  • 1 min read

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']);

Related Posts

See All
How to use RegEx

There are many uses for RegEx, but in the Extellio platform, it can be used to create segments. Here are some examples of how you can use RegEx for your segments. Visit entry URL = .*(support|sales).*

 
 
Turn user actions into insights with events

Let's start with what an event is In simple terms, an event is just something a user does that can be measured. It could be clicking a button, opening a menu or using a product filter - any action yo

 
 
Add E-commerce

To measure Ecommerce performance in Extellio, you need to add tracking to the key moments of your customer’s purchase journey. By placing Extellio’s JavaScript tracking snippets on your product pages,

 
 
bottom of page