Open ibril15 opened 5 years ago
thanks for the feedback @ibril15 There is no way to disable it AFIAK. We're likely not planning to implement it as it's bit edge case. I labeled it as enhancement - new plugin. It could probably be solved in a new plugin to get this behaviour probably.
Hello @tsteur . Believe this could be easily done by setting "urlref" of the Event Tracking Call.
From Matomo perspective, as of now we are providing only 3-4 parameters for trackEvent. like Category, Action and Name, (value).
The overloaded method could be with an addtional parameter of "urlref". This way we can overwrite the referring url and hence associating to the required one.
If you like this idea, I can do a pull request.
Thanks a lot.
@siva538 we're not really wanting to change behaviour in core likely. It be better in a new plugin. But just to check: Can you check the order is correct... like do item 2-6 have the same timestamps? And are the items sorted by date? Because I think they should be still sorted by date, and then grouped together only if they were right after each other.
Hello,
Our website is loosely structured as an outer "workspace" and an inner "content" iframe, both of which are tracked in matomo. The outer workspace contains some of the main navigation as well as common actions (e.g. a "Help" link). The inner content iframe contains all of the actual site content and associated navigation, actions, etc.
3.10 introduced "action grouping" in the visitor log (https://github.com/matomo-org/matomo/issues/13136), that makes actions show under the page where it occurs rather than chronologically. That's helpful for a lot of scenarios, but it takes away our ability to see things like "what page was the user on when he clicked the 'Help' link". Since the Help always exists on the outer workspace, all clicks on the Help will always show up under the original outer workspace page rather than under the latest page the user visited. To clarify:
Before Grouping the Visitor Log looked something like this:
After Grouping the Visitor Log looks something like this:
Is there any way to disable the grouping functionality, or otherwise specify in the Event triggering JS to associate the event with the latest page rather than the parent page? Thanks a lot.
-Igor