My environment has two tags:
1 - A tag for crossing all domain: www.site.com/.*
2 - A tag for specific path, for instance, www.site.com/path/.*
When user hits the home page, one tag is sent
When user hits the path page (/path/), we need send the first tag and the path tag.
I wish to replicate this behavior:
url exemple: www.site.com/path/article/article-name
<script>
...
['_setAccount', 'UA-xxxxxxx-x'],
['_setDomainName', '.subdomain.domain.com'],
['_trackPageview']
['prefix._setAccount', 'UA-xxxxxxx-x'],
['prefix._setDomainName', 'subdomain.domain.com'],
['prefix._setCookiePath','/path/'],
['prefix._trackPageview']
...
</script>
Another way of set this in Tealium could be putting the entire tag in a blank field.
I will look in details how extensions works.
Thanks.
... View more