Feature #298
Forum as Default Page
| Status: | New | Start date: | 02/10/2012 | |
|---|---|---|---|---|
| Priority: | Normal | Due date: | ||
| Assignee: | % Done: | 0% |
||
| Category: | UX | |||
| Target version: | - | |||
| Tag: |
Description
As a user, I would like the first thing I see when I arrive at a group page to be Forums.
Related issues
| related to nycga.net - Feature #351: Forum Posts - Date/Time Stamp | New | 02/10/2012 | ||
| related to nycga.net - Feature #359: Forum Subsections` | New | 02/10/2012 |
History
Updated by Jake DeGroot over 1 year ago
Patricia Lutz
This has been requested a number of times, but I didn't find another ticket for it. If there is one, please notate the additional request in the ticket and close this.
4 Dec 2011, 1:37pm
Jake DeGroot
http://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/changing-group-tab-display-defaults
Updated by Pea Lutz over 1 year ago
- Tracker changed from Feature to 6
Updated by Pea Lutz over 1 year ago
Try these instructions: http://bp-tricks.com/featured/creating-a-custom-front-page-for-your-buddypress-groups/
Updated by Pea Lutz over 1 year ago
- Category set to UX
- Assignee set to Pea Lutz
http://bp-tricks.com/snippets/code/arrange-group-profile-navigation-menu/
Add the following to your functions.php or bp-custom.php file:
function tricks_change_bp_tag_position()
{
global $bp;
//for groups and other component like links etc
$bp->bp_options_nav['groups']['activity']['position'] = 10;
$bp->bp_options_nav['groups']['forum']['position'] = 40;
$bp->bp_options_nav['groups']['gallery']['position'] = 30;//change it to see the effect
$bp->bp_options_nav['groups']['admin']['position'] = 120;
$bp->bp_options_nav['groups']['members']['position'] = 20;
$bp->bp_options_nav['groups']['send-invites']['position'] = 11;
/*function tricks_change_bp_tag_position()
{
global $bp;
$bp->bp_nav['profile']['position'] = 10;
$bp->bp_nav['forum']['position'] = 20;
$bp->bp_nav['gallery']['position'] = 30;
$bp->bp_nav['posts']['position'] = 40;
$bp->bp_nav['activity']['position'] = 50;
$bp->bp_nav['blogs']['position'] = 60;
$bp->bp_nav['friends']['position'] = 70;
$bp->bp_nav['messages']['position'] = 80;
$bp->bp_nav['groups']['position'] = 90;
$bp->bp_nav['settings']['position'] = 100;
}
add_action( 'bp_init', 'tricks_change_bp_tag_position', 999 );
}
add_action( 'wp_head', 'tricks_change_bp_tag_position',9 );
Updated by Lippe Lippe about 1 year ago
- Tracker changed from 6 to Feature