Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save toluaddy/e1721496bb531b413ba44a826e323ace to your computer and use it in GitHub Desktop.
Save toluaddy/e1721496bb531b413ba44a826e323ace to your computer and use it in GitHub Desktop.
Force Buddypress Covers Activation.
/**
* Force Buddypress Covers Activation.
*/
function youzer_activate_buddypress_covers() {
return true;
}
add_filter( 'bp_is_profile_cover_image_active', 'youzer_activate_buddypress_covers', 999 );
add_filter( 'bp_is_groups_cover_image_active', 'youzer_activate_buddypress_covers', 999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment