Skip to content

Instantly share code, notes, and snippets.

@pixelcoder
Created June 28, 2016 22:47
Show Gist options
  • Save pixelcoder/35c33e547ac0abb7180ff98780de2e44 to your computer and use it in GitHub Desktop.
Save pixelcoder/35c33e547ac0abb7180ff98780de2e44 to your computer and use it in GitHub Desktop.
BuddyPress: Disable TinyMce on front
# Disable TINYMCE on XPROFILE
function antipole_remove_rich_text() {
return false;
}
add_filter('bp_xprofile_is_richtext_enabled_for_field', 'antipole_remove_rich_text');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment