Members List different search terms

  • Nicky Telles
  • Topic Author
  • Offline
  • Senior Member
  • Senior Member
More
2 years 31 minutes ago #151247 by Nicky Telles
Members List different search terms was created by Nicky Telles
Hi 

Am I able to change the search terms/items on the members list, I want users to be able to search by Location, i.e. City, State and Country instead of Name, Email and ID. 

Please advise. 

Nicky 

Please Log in or Create an account to join the conversation.

More
1 year 11 months ago #151258 by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic Members List different search terms
Hello

That would require modify code. Look at the file components/com_osmembership/model/members.php, find this line of code:
Code:
$config['search_fields'] = ['tbl.first_name', 'tbl.last_name', 'tbl.membership_id', 'tbl.email', 'b.title', 'c.username', 'c.name'];

Change it to:
Code:
$config['search_fields'] = ['tbl.country', 'tbl.state', 'tbl.city'];

Then check to see if it works?

Regards,

Tuan

Please Log in or Create an account to join the conversation.