-
Analyzing GA4 custom event parameter not updating in UI
So, here’s the rundown. I’m dispatching a custom event (“ebook”) with some added parameters (“titolo”) over to GA4. After that’s all set up, I’m making sure these parameters are marked as a Custom Dimension in the GA User Interface.
I’m sending out the event from my own website using a bit of code that looks like this:
function ebooksGA4new(title) { gtag('event', 'ebooks', { 'titolo': title }); }
After all that’s done, I’ve set up an Exploration on the custom dimension. But here’s the odd part—three days in, and it’s still reporting “not_set.” However, when I fire off the event, I can see it fair and square in the real-time report. Little strange, isn’t it?
Log in to reply.