@vrijvlinder, check out: http://www.longtailvideo.com/support/forums/jw-player/setup-issues-and-embedding/20512/audio-only-jw-player/ I used before and it was cool.
It's always best to avoid hacking the core for this reason. It also opened my eyes to a couple more add-ons I have in mind. Might make sense to revisit my old wishlist. Believe it or not it's been a year -- lot has happened., but I'm back ;)
I ran into a situation with a user with a really long name. If the same happens to you, use the code below and it will add a "..." so the point board looks cleaner :)
li.plbanchor
a {
max-width:130px;
display:inline-block;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
I thought I would share what did to make this work
just add this line below at /discussions/helper_functions.php around line 164
(had to post off site, as code formatting did not work)
Just want to circle back on this, got it working, sort of. I am hiding the CLE editor for Chrome users on IOS. A modified version of the above:
$Useragent =$_SERVER[HTTP_USER_AGENT];
if (PREG_MATCH('/CriOS/', $Useragent)){
return;
}