Hi @mgensollen
Are the jQuery extensions triggering utag.view() or utag.link() calls. If so, the easiest workaround will be to scope these calls to specific tags. The tracking calls have 3 arguments. The first one is the data that is being passed to the tags. The second is a callback function that will run once the call has finished. The last argument, and in our case the most critical one, is an array of the UIDs that should receive this data.
With that being said, if you pass the UID of a tag, only the tag scoped extensions run and load rules are automatically skipped. This means that the tag with the UID specified in the function call will run regardless of its load rules and extensions scoped to all tags will not run.
Here is an example of what the call will look like:
utag.link({data},null,[<UID of tag>])
Good luck!
... View more