Changeset 13658
- Timestamp:
- 12/05/2023 06:15:05 AM (14 months ago)
- Location:
- trunk
- Files:
-
- 13 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/docs/contributor/documentation/README.md
r13657 r13658 5 5 We've decided to use this new location because it has some very interesting benefits: 6 6 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. 8 8 - 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 memberscan 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. 10 10 - & **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. 11 11 -
trunk/docs/user/administration/README.md
r13554 r13658 6 6 - [Tools](./tools/README.md) 7 7 - [Navigation menus](./navigations/README.md) 8 - Users8 - [Users](./users/README.md) 9 9 - Activity 10 10 - Groups -
trunk/docs/user/administration/tools/README.md
r13501 r13658 1 1 # BuddyPress Administration Tools 2 2 3 BuddyPress Tools are reachable from the BuddyPress' Toold submenu. From there you can use various tools to repair or manage specific features.3 The BuddyPress Tools Screen is accessible from the Dashboard via **Tools > BuddyPress**. From there you can use various tools to repair or manage specific features. 4 4 5 5 - [Repair](./repair.md) -
trunk/docs/user/manifest.json
r13656 r13658 51 51 "title": "BuddyPress Repair Tool", 52 52 "slug": "administration-tools-repair", 53 "markdown_source": "../user/administration/ settings/repair.md",53 "markdown_source": "../user/administration/tools/repair.md", 54 54 "parent": null 55 55 }, … … 59 59 "markdown_source": "../user/administration/navigations/README.md", 60 60 "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 61 73 } 62 74 ] -
trunk/src/bp-core/admin/bp-core-admin-functions.php
r13614 r13658 690 690 // Component page. 691 691 case 'settings_page_bp-components': 692 case 'settings_page_bp-components-network': 692 693 // Help tabs. 693 694 $screen->add_help_tab( … … 715 716 // Component page. 716 717 case 'settings_page_bp-rewrites': 718 case 'settings_page_bp-rewrites-network': 717 719 // Help tabs. 718 720 $screen->add_help_tab( … … 733 735 // Settings page. 734 736 case 'settings_page_bp-settings': 737 case 'settings_page_bp-settings-network': 735 738 // Help tabs. 736 739 $screen->add_help_tab( … … 759 762 // Profile fields page. 760 763 case 'users_page_bp-profile-setup': 764 case 'users_page_bp-profile-setup-network': 761 765 // Help tabs. 762 766 $screen->add_help_tab(
Note: See TracChangeset
for help on using the changeset viewer.