HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Audio Player .. that stays playing as you go from page to page
So .. by the way this isnt our code, and its remarkably easy to implement. One of our forum Mods, asked us if this could be initiated on our forums.. we said thats a breeze because all you need is to add the call in each page..as an include or within footer
What I do like about this is , just how cool it works.
http://scmplayer.net/
Check it out..
http://sitehelp.com.au/
p.s I have made quite a few skins for different sites, and happy to make ONE and one only for use with this player that is Vanilla flavoured
What I do like about this is , just how cool it works.
http://scmplayer.net/
Check it out..
http://sitehelp.com.au/
p.s I have made quite a few skins for different sites, and happy to make ONE and one only for use with this player that is Vanilla flavoured
There was an error rendering this rich post.
Tagged:
2
Comments
I'd like to add that to my forum.
Would you have the time to explain how I would go about adding the call or making the code an include with a footer?
I've tried looking at the Vanilla documentation, but can't see where to go (which is my problem, not Vanilla's...)
Thanks if you can, no worries if you can't.
Ste
There was an error rendering this rich post.
There was an error rendering this rich post.
Thanks for doing that, and it will be handy when I get things working!
I'm afraid I wasn't clear in my original post.
I can get the player to work on a non Vanilla site I have, just not in the Vanilla one.
If I paste the code into my default.master.php file in my custom theme folder nothing happens.
I assume I'm putting the code in the wrong place, but don't know where it should go.
Thanks very much for having the patience to try to help me.
There was an error rendering this rich post.
Upload the mplayer folder to: website/forums/themes/yourtheme/views/
Then grab the script code. That you generate, and ensure that the script is pointing to the right place:
<script type="text/javascript" src="http://yourwebsite.com/forums/themes/yourTheme/views/mplayer/script.php" >
Make sure you add the script block generated to your default.master.php file ( your OWN custom one in views folder in your themes. )
Find this code block:
<div id="Foot"> <?php $this->RenderAsset('Foot'); echo Wrap(Anchor(T('Powered by Vanilla'), C('Garden.VanillaUrl')), 'div'); ?> </div>
Add the Media Player code block before the closing div tag.
Like:
<div id="Foot"> <?php $this->RenderAsset('Foot'); echo Wrap(Anchor(T('Powered by Vanilla'), C('Garden.VanillaUrl')), 'div'); ?> <!--422 Music Player by Steve 422.com.au--> in here is the code you generated for your music player <!--End of 422 Music Player script--> </div>
The only issue we have is, the new notification code in 2.0.18.1 interferes slightly, but I am sure someone can provide a fix for this.
This is enough for you to get playing with it, and have some fun ...
There was an error rendering this rich post.
It is very much appreciated.
Then, in the mplayer folder you have created, find playlist.html
Find and remove the following code: You're done!