@dswd
In members-loop.php change this:
<?php if ( bp_has_members( bp_ajax_querystring( 'members' ) ) ) : ?>
To This:
<?php if ( bp_has_members( bp_ajax_querystring( 'members' ) . '&type=alphabetical') ) : ?>
https://codex.buddypress.org/developer/developer-docs/loops-reference/the-members-loop/
I did this instead and is functioning as expected
<?php
if ( bp_ajax_querystring( 'members' ) =="")
{
$queryString = "type=alphabetical&action=alphabetical&page=1";
}
else {
$queryString = bp_ajax_querystring( 'members' );
}
?>
@dswd that worked for me, thx!
This worked beautifully for WordPress 3.8 + Buddypress 1.9.1. Thank you!
I have tried both of these (with BP 1.8.1) and Last Active is still shows up by default.