First find the foreground template file:/template/default/company/search.htm
See 51 lines {Template ' list-company ', ' tag '}
Open/template/default/tag/list-company.htm
After viewing the data dictionary, you know that the company Type field name is type,
In line 14th, add: [{$t [type]}]
The foreground page was refreshed and found to be [], which is not the search for this field.
The reason should be that there is no search for this field in the Model logic program.
Find model Logic program file:/module/company/search.inc.php
Row 61st Data query statement, select $fds ...
Search $fds, found 42 rows $fds = $MOD [' Fields '];
Print the value of the $fds, not containing ' type '. After you find the reason, add a line below line 42:
$fds $fds. ', type '; // Add search field let company search page show company type
The front desk is refreshed, the company type shows up, the problem is solved.
Destoon Company Search page Show company type