• Resolved niseadel

    (@niseadel)


    Hello!

    `On the profile page (website.com/profile/username), in the block below the avatar is some strange link – “About”. Screenshot – https://prnt.sc/26v5jfu

    This link leads to the website.com/profile/username/about page. There’s no content there. It’s a copy of the profile page. I don’t understand why it’s needed. The information about the user is already there in Description field.

    I haven’t found in admin panel how to remove this link from profile page. In Custom Fields this field is missing. I searched in your documentation for the keyword “About” and “/about”, but did not find a description of this option or how to edit it.

    Could you please tell me how to get rid of it?

    Thank!

    • This topic was modified 3 years, 1 month ago by niseadel.
    • This topic was modified 3 years, 1 month ago by niseadel.
Viewing 1 replies (of 1 total)
  • Plugin Support Mark Kevin

    (@mkesteban08)

    Hey @niseadel ,

    The about tab is the tab that holds the basic profile data. If you will remove it, the profile page would redirect you to the user’s post (if active).

    You can try to proceed in removing this tab and notice that the default redirection will change. You can use this snippet to do so:

    function wpum_profile_about_profile_tab( $tabs ) {
    unset( $tabs[‘about’] );

    return $tabs;
    }
    add_filter( ‘wpum_get_registered_profile_tabs’, ‘wpum_profile_about_profile_tab’, 100 );

Viewing 1 replies (of 1 total)
  • The topic ‘“About” link on profile page. How delete?’ is closed to new replies.