Page Method
Overview
The page
method is used to track page views, creating Viewed Page
events for users the function is called for. You should only trigger this method upon successful page loads or route changes in the case of single page applications. This method automatically gathers and sends information regarding the page, browser session and operating system configuration of tracked users to CrossEngage.
The page
method has the following structure:
Implementation
This page method is not needed on each page - only on those for which a specific use case might arise, e.g. sales-, special offer-, voucher-pages. You can leave out the page method on the product detail pages as the track method can be used instead.
Copy the
page
method snippet.Create a custom HTML tag on your tag manager and paste the snippet between
<script></script>
HTML tags.Set up a trigger which fires the tag upon every page load.
If you are setting up the page
method for a single page application, ensure that you set up the trigger based on routing changes rather than page loads.
Gathered data
The information the page
method transmits is stored in a context
object, which has a syntax such as the example below:
Information gathered in the context object
Value | Type | Description |
| string | Current language used in the browser session. |
| array | Array containing information the language setup of the user's operating system. |
| string | The full URL of the tracked page. |
| string | The path of the URL of the tracked page. |
| string | The full URL of the page the user was previously on. |
| string | Query parameters that were used on the URL. |
| string | Title of the page. |
| string | Full URL of the page. |
| string | The type of operating system of the user. |
| string | The version and type of browser and operating system of the user. |
Use cases
Segment users that have visited the women shoes category of your shop
The below block is an example of a context
object from a Viewed Page
event which we will be targeting for this example:
To segment all users that have visited the women shoes category of your shop, create a segment condition filtering Viewed Page
events with the property context.page.path
using the contains
operator with the value women/shoes
.
Segment users that have visited the FAQ section of your site
The below block is an example of a context
object from a Viewed Page
event which we will be targeting for this example:
To segment all users that have visited the FAQ section of your site, create a segment condition filtering Viewed Page
events with the property context.page.title
using the contains
operator with the value FAQ
.
Depending on the use case you would like to satisfy, you may use any of the properties sent in the context of the Viewed Page event or even a combination of them. For example, you may want to segment all users which have visited your FAQ page, redirected from google. To segment these users, create a segment condition filtering Viewed Page
events with the property context.page.referrer
using the contains
operator with the value google
and the property context.page.title
using the contains
operator with the value faq
.
Last updated