Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KaineLabs/6e79389e5e87cc495e4b2a57dbfd394d to your computer and use it in GitHub Desktop.
Save KaineLabs/6e79389e5e87cc495e4b2a57dbfd394d to your computer and use it in GitHub Desktop.
Force Creating The Profile Edit Page
<?php
// Force Creating The Profile Edit Page
function yzc_force_creating_profile_edit_page() {
bp_core_new_subnav_item( array(
'slug' => 'edit',
'name' => __( 'Profile Settings', 'youzer' ),
'parent_slug' => 'profile',
'parent_url' => yz_get_profile_settings_url(),
'screen_function' => 'yz_get_profile_settings_page',
)
);
}
add_action( 'bp_actions', 'yzc_force_creating_profile_edit_page', 101 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment