Can search other thing except 'text search' and 'user search' ?
If it do, did I need to edit the assembly code or just add new field input in the template ?
I want to add some search for different type of user, like if I want to search those user which have a tag of 'female' or 'superstar', can I add some field to search or filter to get those users list as result ?
Well, you obviously want to search in the user list, not in the forum content. Such search is not actually implemented. There is only a list of the users that can be sorted by some user attribute.
So, in order to search for user attributes, such as "sex", "status", "anything", etc. you need first to include these attributes in the database, in the table "users", or another special table, linked to the table "users". Also, editing of these attributes should be provided in the userinfo.asm file.
Then, relatively simple solution will be to modify the !users
list page and add your attributes into the queries and sort orders. Additionally, there can be added a search input field working together with the list function.
The code of the !users
implementation is in the file: userslist.asm.