Name is required.
Email address is required.
Invalid email address
Answer is required.
Exceeding max length of 5KB

Label is not changed with Google Analytics


In brief, looking at the documentation here:
http://support.jwplayer.com/customer/portal/articles/1417179-integration-with-google-analytics

I am trying to use the following with JW 6.11 Ads:
ga: {
label: "http://example.com/example.html"
}
});

However, JW still continues to report the file URL (which for us is meaningless data) instead of the defined label.
Any ideas how to fix this?

3 Community Answers

Cooper Reid

JW Player Support Agent  
0 rated :

Hi-

I believe that the label parameter must be either ‘mediaid’, or ‘title’. You may be able to use custom parameters as well. Sorry if this isn’t clear. I don’t believe that you can pass in a hardcoded value as done in your example.

I think this should work for you:
jwplayer(“player”).setup({
file: ‘test.mp4’,
title: ‘http://example.com/example.html’,
width:‘100%’,
ga: {
label: “title” //you can try using `description` as well and defining description on your setup object
}
});

http://support.jwplayer.com/customer/portal/articles/1417179-integration-with-google-analytics

-Cooper

domains

User  
0 rated :

Yes, it is going to work with the description variable.

Cooper Reid

JW Player Support Agent  
0 rated :

Excellent -
Cooper

This question has received the maximum number of answers.