Multiple Issues & Concerns With Pirsch

  1. Why is my Dashboard now different light color? Why can’t I change it back to dark theme? I prefer this mode, as the light theme hurts my eyes. I don’t think you should be charging people to make a theme for their dashboard this is an accessibility concern on my end. I hope you guys don’t plan to nickel and dime us for different small features like this. Please allow me to revert back to dark mode. I will be very disappointed if you set my default theme to light mode when I require it in Dark. Please fix this.

  2. In your website integration example for setting up events. You display pirsch-event="Button Clicked" as the way to add an event, but I tried this and it’s not working. Looking at your documentation it shows data-pirsch-event which is it? Also you do not specify if the other attributes are required or not. I only need pirsch-event so do I have to define the other attributes still as I have no use for them?

  1. If I select Past 7 Days, 14, or 30 Days I can use Filters. But If select All Time or manually set a date range equal to 30 or more the Filters disappear. This appears to be a bug. Can this be resolved please?

You can disregard #1 partially… I was able to figure out how to set back to dark mode. It was set to System by default so somehow it changed my theme to light mode. Although I do believe charging people for Theme Customization is a bit of an odd feature to charge for. Something like that should be available to all customers for accessibility reasons.

P.S. I understand if part of theme options is for a White Labeling use case, but for regular paying customers we should have some degree of options to customize our dashboard when there is no intent to white label simply for accessibility and improved user experience reasons.

Regarding #2 I just now switched to data-pirsch-event and this is also not working. Can you please test my integration and check the dashboard events on your end. I don’t think it’s working if only data-pirsch-event is required to create an event.

Hi Jon,

  1. This is auto-selected based on your OS preferences, but you can set it manually in the account settings (Dashboard - Pirsch Analytics).

You’re right that we charge for it because it is intended to be used by resellers primarily. What would you like to be able to customize?

  1. You should use data-pirsch-event. Anything starting with data- is a valid HTML attribute, pirsch-event is not. Both work, so this doesn’t make a huge difference if you do not care about correctness (the browser doesn’t in this case).

I’ll take a look and reply to you asap :slight_smile:

  1. Did you import data from another analytics tool? If the selected period contains imported statistics, filters cannot be applied.

Yes, I did import data… OK i’ll wait and see if the same issue occurs for the month of April.

Regarding events, OK I did integrate correctly then… it’s not working.

Looking at your website (which is really nice btw.) the Play Now button isn’t present on load and added after the game has finished loading. Which does make sense, but the script won’t pick it up that way.

I would recommend adding the events manually via JS after the game has loaded. You can check our docs on how to do that:

This is what the script does, in case you would like to replicate it:

function addHTMLEvents(selector) {
        const elements = document.querySelectorAll(selector);

        for (const element of elements) {
            element.addEventListener("click", () => {
                htmlClickEvent(element);
            });
            element.addEventListener("auxclick", () => {
                htmlClickEvent(element);
            });
        }
    }

I have added the events via JavaScript and still not working… I’m getting this error from the API Request

{"validation":{},"error":["The request was denied due to a filtering policy."]}

I’m seeing this in Google Chrome Console Logs under Network

Looks like you set a filter policy? Please check the settings, maybe you’re filtering your own traffic at the moment.

I couldn’t replicate the problem. To which button did you attach the event? Can you post the code for it here?