Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #523340

    Hi.

    I noticed others on this forum have tried to get the very good podcasting / video plugin “Series Engine” working with Enfold to varying degrees of success.

    Would you be able to tell me how to get the audio player button working to play the mp3 audio? The video player is working fine, but the audio playing element is not … when I press the play button, nothing happens.

    From what others have said, I guess there’s some kind of conflict between the Enfold audio player element and the plugin’s… I’ve tried pasting the codes others have come up with but it doesn’t help me — I guess each site is unique?

    #523364

    Hey Paul!

    Have you tried work out with the plugin developer?
    What have he said?

    Cheers!
    Basilis

    #523591

    I’m waiting for a response from the developer. However, as per previous Enfold users and what they’ve stated that the developer indicated — and from my research — it seems that Enfold uses the built-in WordPress media player element and bundles it all in a folder called js/mediaelement — and this conflicts with other audio players … Another plugin developer (also dealing with audio) that was conflicting with Enfold said deleting Enfold’s js/mediaelement folder resolves the problem.

    However, what will happen if I do that? Is it just the audio player functionality that I’ll lose? What other ramifications are there if I delete this folder?

    #524350

    Hi!

    We only use the css file in the the js/mediaelement folder to override the default media styling so I don’t think it will break any third party script. The theme is actually using the default wp-mediaelement script so I guess the plugin is not compatible with WP’s default media script.

    wp-includes/js/mediaelement/wp-mediaelement.js?ver=4.3.1
    wp-includes/js/mediaelement/mediaelement-and-player.min.js?ver=2.17.0

    You can deactivate WP’s media element but it will break the video and audio shortcode:

    add_action('after_setup_theme', function() {
    	wp_deregister_script('wp-mediaelement');
        wp_deregister_style('wp-mediaelement');
    }, 10);

    Regards,
    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.