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!
Hey Santos Ramos!
MediaElement is part of the WordPress core, there are some ways to disable it (at your own risk).
Regards,
Josue
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,
Hey!
How is MediaElement affecting the functionality of your media grid plugin?
Regards,
Josue
Hi,
Does the issue persists with the default WordPress theme activated?
Cheers!
Josue
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