搜索用户的界面身高搜索只能按固定值搜索,很多站长希望像年龄一样能按区间搜索,修改方法如下:
修改/source/language/home/lang_template.php
找到 1403 行
- 'age_segment' => '年龄段',
下面加入
- 'height_segment' => '身高区间',
修改/source/include/spacecp/spacecp_search.php
第 65 行
- $havefield = 0;
上面插入
- $startheight = $endheight = 0;
- if($_GET['endheight']) {
- $endheight = intval($_GET['endheight']);
- }
- if($_GET['startheight']) {
- $startheight = intval($_GET['startheight']);
- }
- if($startheight && $endheight && $endheight > $startheight) {
- $wherearr[] = 'sf.'.DB::field('height', $startheight, '>=').' AND sf.'.DB::field('height', $endheight, '<=');
- } else if($startheight && empty($endheight)) {
- $wherearr[] = 'sf.'.DB::field('height', $startheight, '>=');
- } else if(empty($startheight) && $endheight) {
- $wherearr[] = 'sf.'.DB::field('height', $endheight, '<=');
- }
还是这个文件,第 82 行左右搜索
- if($havefield || $startage || $endage) {
替换为
- if($havefield || $startage || $endage|| $startheight || $endheight) {
修改 template/default/home/spacecp_search.htm
第 272 行左右搜索
- <tr>
- <th>{lang upload_avatar}</th>
注意在<tr> 上面插入以下代码:
- <tr>
- <th>{lang height_segment}</th>
- <td><input type="text" name="startheight" value="" size="10" style="width: 114px;" /> ~ <input type="text" name="en
- dheight" value="" size="10" style="width: 114px;" /></td>
- </tr>