Anybody?
Our custom field is club_company
.
I have tried putting that in place of last_name,first_name
in the code I found on this page: https://www.paidmembershipspro.com/customize-default-member-directory-sort-order/ but it generates an error “No matching profiles found”.
function pmpro_custom_directory_sql_parts( $parts ) {
$parts['ORDER'] = ' ORDER BY last_name,first_name ASC ';
return $parts;
}
add_filter( 'pmpro_member_directory_sql_parts', 'pmpro_custom_directory_sql_parts', 10, 1 );
I have also tried to change the standard shortcode via some of the items found on this page: https://www.paidmembershipspro.com/add-ons/member-directory/ so my shortcode has order="ASC" order_by="club_company"
in it but that too generates the same error “No matching profiles found”.