Skip to:
Content
Pages
Categories
Search
Top
Bottom

REMOVE EDIT OPTION FROM PROFILE

  • @kjcarleo

    Participant

    Hello all,

    Is it possible to completely prevent users from even having the option to edit their profile? Like to remove the “Edit” option altogether from the profile?

    Kevin

Viewing 4 replies - 1 through 4 (of 4 total)
  • @shanebp

    Moderator

    Put this in your theme functions.php or in bp-custom.php

    function kjc_remove_edit_tab() {
         bp_core_remove_subnav_item( 'profile', 'edit' );
    }
    add_action( 'bp_ready', 'kjc_remove_edit_tab' );

    @kjcarleo

    Participant

    What does kjc stand for? Those are my initials?

    @shanebp

    Moderator

    I just used them to insure a unique name for the function.
    Change them or don’t.

    @kjcarleo

    Participant

    Awesome thanks. Works great!

Viewing 4 replies - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.
Skip to toolbar