Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #353345

    Hello,

    I’m using the media grid plugin and I need to disable mediaelement. How can I do it?

    Also, how will this disabling mediaelement affects the theme?

    Thanks!

    #353383

    Hey Santos Ramos!

    MediaElement is part of the WordPress core, there are some ways to disable it (at your own risk).

    Regards,
    Josue

    #353442

    Thanks for the reply but can you please explain the risks?
    See, I’m not a coder and the video player that you provided does not have any features. The video player on the theme loads all the videos at once and make the page super slow. That is why I had to buy a video plugin.
    Thanks,

    #353443

    Hey!

    How is MediaElement affecting the functionality of your media grid plugin?

    Regards,
    Josue

    #353450
    This reply has been marked as private.
    #353456

    Hi,

    Does the issue persists with the default WordPress theme activated?

    Cheers!
    Josue

    #353467
    This reply has been marked as private.
    #354141

    Hi!

    If you want to disable the media element script, you can add this on functions.php:

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

    I’m sorry but we don’t provide support for third party plugins as stated on our support policy. Please contact the plugin author.

    Regards,
    Ismael

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