A - Z Artist / Profiles page - Audio Pro
Design and Skin Customization
it would list them in the order they signed up in because there is no order by parameter set
{jrCore_list module="jrProfile" search1="profile_url like a%" order_by="profile_url asc"}
or the reverse:
{jrCore_list module="jrProfile" search1="profile_url like a%" order_by="profile_url desc"}
That wild card mean (and an other characters) so
" search1="profile_url like a%"}
means (beginning with the letter 'a' )
" search1="profile_url like %a%"}
means (has the letter 'a' somewhere in it)
" search1="profile_url like %a"}
means (ends with the letter 'a')
--edit--
You can order by anything that exists in the profile datastore, so you could "Get all profiles beginning with 'a' and order them by their phone number" if you wanted.
updated by @michael: 05/13/20 05:03:23PM