Topic: show member by state
This code displays members by "city", how can I make it work by "state"? I try replacing city with state but no luck.
{members:limit=48,photos=1,cache_time=0,types=1,profile_city=session.profile_city,orderby="rand()"}
You are not logged in.
This code displays members by "city", how can I make it work by "state"? I try replacing city with state but no luck.
{members:limit=48,photos=1,cache_time=0,types=1,profile_city=session.profile_city,orderby="rand()"}
{members:limit=48,photos=1,cache_time=0,types=1,profile_state=session.profile_state,orderby="rand()"}
I try replacing the word "city" with "state" but that did not work. Not sure if city is a value and state value_id any ideas?
If your state field is a combo box, try this
{members:limit=48,photos=1,cache_time=0,types=1,profile_state_id=session.profile_state_id,orderby="rand()"}
I try what you said and it does not work, i don't understand
{members:limit=10,photos=1,cache_time=0,types=1,profile_state_id=session.profile_state_id,orderby="rand()"}
Sorry, my mistake, it should be
{members:limit=10,photos=1,cache_time=0,types=1,profile_state=session.profile_state_id,orderby="rand()"}
Thank you... it works excellent