ProgressionPlayer - Plugin Documentation

By Progression Studios


Thank you for purchasing this plugin. If you have questions that are beyond the scope of this help file, visit our support forum.

Plugin Installation

To install your plugin, login to WordPress and go under Plugins > Add New. Click Upload Plugin at the top and hten select the file Progression-Player.zip. Once you upload this file, click activate to complete the installation.



Adding Audio/Video

Adding audio/video is very easy. Just click "Add Media" and upload your file. Once you are ready, just click Insert to Page.



Externally Hosted Audio/Video

You can copy/paste a link to your file and the player will automatically be built.

http://mysite.com/video-media.mp4



You can view the default player options under Settings > Progression Player in the WordPress Dashboard.

In the player options, you can adjust the default skin and create a new skin. In addition you can add global player options like start volume and playlist options.



Player Options Per Player/Playlist

After you insert a player, you can edit it's options. Just select it and click "Options". This will bring up a list of options


Volume setting not working on page load?

Edit the player after creating it and make sure Preload is set to "Auto".



Adding an Audio/Video Playlist involves using the "Add Media" button while editing a page.

From there, you can select "Create a Audio or Video Playlist" and start adding items you want in your playlist. When you are happy with your playlist, just click Create a new Playlist.





We have two heights built into the player. You can adjust the height under Settings > Progression Player > "Size"


Developer Notes: Adjusting the player widths can be done using the content_width command built-in to Wordpress (http://codex.wordpress.org/Content_Width):

	if ( ! isset( $content_width ) )
			$content_width = 600;

You will paste this into your functions.php file. Make sure to check if your theme already has a content_width set.



WordPress will automatically generate a shortcode for each player. If you are trying to import the player in a custom meta-box and it isn't working. Try building it via a shortcode instead like so:

[audio mp3="http://yourwebsite.com/audio.mp3"]

[video mp4="http://yourwebsite.com/video.mp4"]

You can learn more about the shortcodes here:
https://codex.wordpress.org/Audio_Shortcode
https://codex.wordpress.org/Video_Shortcode