Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 24,027
- How-to & Troubleshooting
- 129,663
- Creating & Extending
- 25,794
- Requests & Feedback
- 9,497
- Third Party Plugins
- 9,793
- Showcase
- 3,316
- Ideas
- 1,374
- Miscellaneous
- 9,181
-
Here is a way to kind of do it
in the main plugins folder add this to a custom-code.php file
function custom_group_alpha_first() {
?><option SELECTED value="alphabetical"><?php _e( 'Alphabetical', 'buddypress' ) ?></option><?php
}
It will work, but then you have duplicate Alphabetic selects. You can try to hide the other one with CSS or Javascript using the DOM. good luck.