Skip to:
Content

BuddyPress.org

Changeset 13658


Ignore:
Timestamp:
12/05/2023 06:15:05 AM (14 months ago)
Author:
imath
Message:

Update user documentation about xProfile Administration

NB: this commit also makes sure help tabs for various BP Admin screens are displayed in the Network Admin.

Props emaralive

See #9004
Closes https://github.com/buddypress/buddypress/pull/198

Location:
trunk
Files:
13 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/docs/contributor/documentation/README.md

    r13657 r13658  
    55We've decided to use this new location because it has some very interesting benefits:
    66
    7 - We don’t need to wait to put up documentation sites to share documentation resources with users, they can always read it from the [GitHub repository](https://github.com/buddypress/buddypress/tree/master/docs) that is synchronized with our main repository.
     7- We don’t need to wait to put up documentation sites to share documentation resources with users, they can always read it from the [GitHub repository](https://github.com/imath/buddypress/tree/master/docs) that is synchronized with our main repository.
    88- As explained into our last [feedback post](https://buddypress.org/2023/06/buddypress-community-contribution/): having docs directly inside our repository shows **we acknowledge Documentation is as important as code**.
    9 - Using GitHub to review documentation contributions is very convenient as the BP Documentation team members can ask contributors to improve their work using the GitHub features.
     9- Using GitHub to review documentation contributions is very convenient as the [BP Documentation team members](https://github.com/orgs/buddypress/teams/documentation-team) can ask contributors to improve their work using the GitHub features.
    1010- & **most importantly**: when committing a new Documentation contribution from our main repository (SVN), we can credit authors so that they are rewarded with a lovely BuddyPress contributor badge on their WordPress profile, just like a code contributor would be.
    1111
  • trunk/docs/user/administration/README.md

    r13554 r13658  
    66- [Tools](./tools/README.md)
    77- [Navigation menus](./navigations/README.md)
    8 - Users
     8- [Users](./users/README.md)
    99- Activity
    1010- Groups
  • trunk/docs/user/administration/tools/README.md

    r13501 r13658  
    11# BuddyPress Administration Tools
    22
    3 BuddyPress Tools are reachable from the BuddyPress' Toold submenu. From there you can use various tools to repair or manage specific features.
     3The BuddyPress Tools Screen is accessible from the Dashboard via **Tools > BuddyPress**. From there you can use various tools to repair or manage specific features.
    44
    55- [Repair](./repair.md)
  • trunk/docs/user/manifest.json

    r13656 r13658  
    5151        "title": "BuddyPress Repair Tool",
    5252        "slug": "administration-tools-repair",
    53         "markdown_source": "../user/administration/settings/repair.md",
     53        "markdown_source": "../user/administration/tools/repair.md",
    5454        "parent": null
    5555    },
     
    5959        "markdown_source": "../user/administration/navigations/README.md",
    6060        "parent": null
     61    },
     62    {
     63        "title": "BuddyPress Administration - Users",
     64        "slug": "administration-users",
     65        "markdown_source": "../user/administration/users/README.md",
     66        "parent": null
     67    },
     68    {
     69        "title": "BuddyPress xProfile fields administration",
     70        "slug": "administration-users-xprofile",
     71        "markdown_source": "../user/administration/users/xprofile.md",
     72        "parent": null
    6173    }
    6274]
  • trunk/src/bp-core/admin/bp-core-admin-functions.php

    r13614 r13658  
    690690        // Component page.
    691691        case 'settings_page_bp-components':
     692        case 'settings_page_bp-components-network':
    692693            // Help tabs.
    693694            $screen->add_help_tab(
     
    715716        // Component page.
    716717        case 'settings_page_bp-rewrites':
     718        case 'settings_page_bp-rewrites-network':
    717719            // Help tabs.
    718720            $screen->add_help_tab(
     
    733735        // Settings page.
    734736        case 'settings_page_bp-settings':
     737        case 'settings_page_bp-settings-network':
    735738            // Help tabs.
    736739            $screen->add_help_tab(
     
    759762        // Profile fields page.
    760763        case 'users_page_bp-profile-setup':
     764        case 'users_page_bp-profile-setup-network':
    761765            // Help tabs.
    762766            $screen->add_help_tab(
Note: See TracChangeset for help on using the changeset viewer.