Thank you Maeve,
I installed the plugin (not Pro) and started entering the info to add songs. Clicking ADD SONG, I get an error message:
403 Permission Denied
You do not have permission for this request /wp-admin/admin.php?page=hmp_palylist
Seems like there is a typo in the plugin somewhere in the file “html5-jquery-audio-player/index.php”
hmp_palylist should be hmp_playlist I imagine…
function my_plugin_menu() {
add_menu_page( 'HTML5 MP3 Player', 'HTML5 Player', 'manage_options', 'hmp-options', 'wp_hmp_options',plugin_dir_url( __FILE__ )."/music-beam.png" );
add_submenu_page('hmp-options','','','manage_options','hmp-options','wp_hmp_options');
add_submenu_page('hmp-options','Display Settings','Display Settings','manage_options','display_settings','wp_hmp_options');
add_submenu_page( 'hmp-options', 'Manage Songs', 'Manage Songs', 'manage_options', 'hmp_palylist', 'wp_hmp_playlist' )
And also found here:
<?php
$palyer_div = '<div id="myplayer"></div>';
return $palyer_div;
Hope this helps,
Andre