Hi,
We do correctly register and enqueue the script, this can be seen in the functions.php
file. Look for: wp_enqueue_script('jquery-ui');
Knowing this, you can simply use a child theme to dequeue this.
Please install and activate the supplied child theme, inside the child theme functions.php
file paste this code below to dequeue this script file. I’d really not recommend this for that plugin though, the theme does require that JS file.
function sf_child_remove_scripts() {
wp_dequeue_script('jquery-ui');
}
add_action( 'wp_enqueue_scripts', 'sf_child_remove_scripts' );
WordPress will automatically play your MP3 file links if you paste them into your post/page content – is there a real need for the plugin?