Skip to content

Instantly share code, notes, and snippets.

@KaineLabs
Created November 13, 2024 17:41
Show Gist options
  • Save KaineLabs/b054f04e1f80c8ed42e16f7937a8f04a to your computer and use it in GitHub Desktop.
Save KaineLabs/b054f04e1f80c8ed42e16f7937a8f04a to your computer and use it in GitHub Desktop.
Youzify - Fix Enfold Theme "Add Media" Button
<?php
/**
* Youzify - Fix Enfold Theme "Add Media" Button
* */
function yzc_fix_frontend_submission_editor( $default ) {
if ( bp_current_component() ) {
return 'force_mediaelement';
}
return $default;
}
add_filter( 'avf_enqueue_wp_mediaelement', 'yzc_fix_frontend_submission_editor' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment