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

JW Wordpress Plugin - no playlist on mobile?


Hello,
I was hoping to get a little guidance on why I don't see a playlist while on mobile? There should be a bottom playlist with 2 videos in it. Any guidance is greatly appreciated.

http://spyderaction.com/test/


Thanks.

3 Community Answers

jherrieven

Best Answer 

@Bart

Although you are loading the 6.9 JW Player library explicitly - which IS being used on the desktop version - the wordpress template has also included a reference to JW 6.8.

The mobile version is rendering using JW6.8 - which is why there is no YouTube playlist.

Can you remove the JW6.8 reference?

@Willie - Your posts, whilst amusing in their randomness, are not at all helpful!



View in conversation

wmeier

User  
0 rated :

@Bart

This is something I use on my web site; you may wish to try it out.

I test this with an add-on for Firefox; web developer
then under resize select view responsive layouts.

<script>

if (navigator.userAgent.match(/iPhone/i) != null){
document.write('<meta name="viewport" content="width=width=320.1,initial-scale=.5,minimum-scale=.5,maximum-scale=.5,user-scalable=no" />');
} else
if (navigator.userAgent.match(/iPad/i) != null){
document.write('<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />');
} else {
document.write('<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no />');
}

function hideURLbar() {
if (window.location.hash.indexOf('#') == -1) {
window.scrollTo(0, 1);
}
}
if (navigator.userAgent.indexOf('iPhone') != -1 || navigator.userAgent.indexOf('Android') != -1 || navigator.userAgent.indexOf('iPad') != -1) {
addEventListener("load", function() {
setTimeout(hideURLbar, 0);
}, false);
}

</script>

jherrieven

Best Answer  User  
0 rated :

@Bart

Although you are loading the 6.9 JW Player library explicitly - which IS being used on the desktop version - the wordpress template has also included a reference to JW 6.8.

The mobile version is rendering using JW6.8 - which is why there is no YouTube playlist.

Can you remove the JW6.8 reference?

@Willie - Your posts, whilst amusing in their randomness, are not at all helpful!



Ethan Feldman

JW Player Support Agent  
0 rated :

@Willie – Please don’t reply to posts unless you know how to reply to them. I know for a fact that you have never used WordPress, or our WP plugin, so why even reply to this one?

@Bart – Our WP plugin is not yet updated to 6.9, it will be updated shortly.

For the meantime, you can work around this.

The plugin has a php file called “jwplayermodule.php”

Go into this file, and change this line:

define(“JWP6_PLAYER_LOCATION”, null);

To this:

define(“JWP6_PLAYER_LOCATION”, “http://p.jwpcdn.com/6/9/jwplayer.js”);

This question has received the maximum number of answers.