- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
I am not sure what type of website this is, what variables your client wants, or how the URLs/site is structured, but will try to weigh in on your ask.
One option would be to write JavaScript that looks for URL patterns and matches those to specific values you want recorded in your dimensions. For example, imagine that your contact us page URL is either mysite.com/contact/ (for English), mysite.com/es/contacto/ (for Spanish), or mysite.com/fr/contacter/ (for French). You want to capture dimension values in English only, and the dimensions you care about are Page Name and Section.
pagename: 'Contact'
channel: 'Contact"
**/contact**
**/contacto**
**/contacter**
Note that going the page pattern route is going to be fairly laborious up front, since you'll need to know all the dimension values that you care about, and what URLs are associated with those specific values.
For things like custom links and buttons, you can probably use HTML elements to map to specific variables values.
Views
Replies
Total Likes