Created
November 13, 2024 17:41
-
-
Save KaineLabs/b054f04e1f80c8ed42e16f7937a8f04a to your computer and use it in GitHub Desktop.
Youzify - Fix Enfold Theme "Add Media" Button
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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