In case you've migrated to the Global analytics tag (gtag.js) tracking code, you will have to append a code snippet on your webpage instead of enabling the integration in your GetFeedback Digital account. This is due to the way this specific tracking code sends event parameters.
To be able to push GetFeedback Digital data using the Global analytics tag, you need to copy/paste the following code snippet under the GetFeedback Digital button code:
window.usabilla_live('setEventCallback', function(category,action,label,value){
if (typeof action !== 'undefined') {
gtag('event', action, {
'event_category': 'Usabilla',
'event_label': label,
'value': value,
});
}
});
You can see what kind of data is included in this integration and also how you set up your custom report in this article.