Dennis Ruhe

Results 11 comments of Dennis Ruhe

Sorry I have had little time lately. Such a feature does not yet exist, but I think it is a good feature.

I recommend doing: ``` this.$matomo.setUserId(newUserId) this.$matomo.trackPageView() // or window._paq.push(['setUserId', newUserId]) window._paq.push(['trackPageView']); ``` As soon as your user id becomes available.

I do think this is a good idea to implement, though it is a very strict behaviour which I think goes beyond the GDPR. If implemented and enabled by default...

You have a clear reason for tracking certain data without explicit consent - access logs are there to help identify server load issues, hacking attempts, etc. The GDPR does not...

Yes, Matomo is not provided until the script is loaded. I'm not familiar with Quasar, but I don't think there's much we can do about that.

Unfortunately Matomo is loaded seperately and `this.$matomo` is not defined until Matomo is loaded. On top of that adblockers / anti-tracking plugins might block Matomo from loading entirely and `this.$matomo`...

I just ran into this issue too on v3.0.34

Here is a snippet from my code, which should only load the data that is actually written. Maybe it will be of help to you: ```php /** * Reads the...

It does work when I put the field on required. Then it prints > <custom error message> (<vue-strap error message>) e.g. > This field is required (required)

I think this implementation is more or less final now. I tested it using publishLocal in another project and it all works. It's weird how the tests ran directly don't...