Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature currently requires accessing the site using the built-in Safari browser.
Normal
Rick - What you suggested should work. The trick, as you expected, is parsing the model from the VDP url. Depending on who your website provider is, that can go from "super easy" to "why the !@#^^ do they do it this way!?"If you aren't familiar with Regex (regular expressions) you might want to take a look. If your URL structure is more complicated, regex is often the easiest way to get a match. Feel free to ping me if you need help on that.Now, if you're really feeling ambitious and have some technical savvy...it's not terribly hard to drop your own tracking cookie with Javascript. You could identify each unique user (something GA won't let you do) and then simply record every URL they hit and then do the analysis with your own data. Obviously, not something I'd recommend for the faint of heart.
Rick - What you suggested should work. The trick, as you expected, is parsing the model from the VDP url. Depending on who your website provider is, that can go from "super easy" to "why the !@#^^ do they do it this way!?"
If you aren't familiar with Regex (regular expressions) you might want to take a look. If your URL structure is more complicated, regex is often the easiest way to get a match. Feel free to ping me if you need help on that.
Now, if you're really feeling ambitious and have some technical savvy...it's not terribly hard to drop your own tracking cookie with Javascript. You could identify each unique user (something GA won't let you do) and then simply record every URL they hit and then do the analysis with your own data. Obviously, not something I'd recommend for the faint of heart.