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

Player Appearance Settings


How to remove the inscription ad loading.
How to translate the "skip" button into another language.

2 Community Answers

Todd

JW Player Support Agent  
0 rated :

We do not have built-in functionality to edit the “Loading Ad” message but perhaps there is a way to do this with custom CSS or Javascript.

You should be able to change the Skip button text with the skiptext parameter in your advertising: {} block. Please see https://developer.jwplayer.com/jw-player/docs/developer-guide/customization/configuration-reference/ for more details.

Here’s a code example:

jwplayer('video1').setup({
	file: 'http://content.jwplatform.com/manifests/s8BPzDe0.m3u8',
	mediaid: 's8BPzDe0',
	advertising: {
		client: 'vast',
		tag: 'https://playertest.longtailvideo.com/vast-30s-ad.xml',
		skipoffset: 3,
		skiptext: "Skip this ad now"
	}
})

Todd

JW Player Support Agent  
0 rated :

My apologies! There is a new way to change text in the player using the localization: {} block as documented at https://developer.jwplayer.com/jw-player/docs/developer-guide/customization/configuration-reference/

jwplayer('video1').setup({
	file: 'http://content.jwplatform.com/manifests/s8BPzDe0.m3u8',
	mediaid: 's8BPzDe0',
	advertising: {
		client: 'vast',
		tag: 'https://playertest.longtailvideo.com/vast-30s-ad.xml',
		skipoffset: 3,
		skiptext: "Skip this ad now",
		skipmessage: "Это объявление закончится через XX секунд"
	},
	localization: {
		loadingAd: "Загрузка объявления"
	}
})

This question has received the maximum number of answers.