Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 23,841
- How-to & Troubleshooting
- 129,850
- Creating & Extending
- 25,886
- Requests & Feedback
- 9,530
- Third Party Plugins
- 9,828
- Showcase
- 3,316
- Ideas
- 1,387
- Miscellaneous
- 9,177
-
In the Template-File members-loop-php I inserted the following Code at the top of the file:
`
<?php
if ( bp_ajax_querystring( ‘members’ ) ==””)
{
$queryString = “type=alphabetical&action=alphabetical&page=1”;
}
else {
$queryString = bp_ajax_querystring( ‘members’ );
}
?>
…`