搜索用户的界面身高搜索只能按固定值搜索,很多站长希望像年龄一样能按区间搜索,修改方法如下:
修改/source/language/home/lang_template.php
找到 1403 行

  1. ‘age_segment’ => ‘ 年龄段’,

下面加入

  1. ‘height_segment’ => ‘ 身高区间’,

修改/source/include/spacecp/spacecp_search.php
第 65 行

  1. $havefield = 0;

上面插入

  1. $startheight = $endheight = 0;
  2.         if($_GET[‘endheight’]) {
  3.                 $endheight = intval($_GET[‘endheight’]);
  4.         }
  5.         if($_GET[‘startheight’]) {
  6.                 $startheight = intval($_GET[‘startheight’]);
  7.         }
  8.         if($startheight && $endheight && $endheight > $startheight) {
  9.                 $wherearr[] = ‘sf.’.DB::field(‘height’, $startheight, ‘>=’).’ AND sf.’.DB::field(‘height’, $endheight, ‘<=’);
  10.         } else if($startheight && empty($endheight)) {
  11.                 $wherearr[] = ‘sf.’.DB::field(‘height’, $startheight, ‘>=’);
  12.         } else if(empty($startheight) && $endheight) {
  13.                 $wherearr[] = ‘sf.’.DB::field(‘height’, $endheight, ‘<=’);
  14.         }

还是这个文件,第 82 行左右搜索

  1. if($havefield || $startage || $endage) {

替换为

  1. if($havefield || $startage || $endage|| $startheight || $endheight) {

修改 template/default/home/spacecp_search.htm
第 272 行左右搜索

  1. <tr>
  2. <th>{lang upload_avatar}</th>

注意在<tr> 上面插入以下代码:

  1. <tr>
  2.                                                                 <th>{lang height_segment}</th>
  3.                                                                 <td><input type=”text” name=”startheight” value=”” size=”10″ style=”width: 114px;” /> ~ <input type=”text” name=”en
  4. dheight” value=”” size=”10″ style=”width: 114px;” /></td>
  5.                                                         </tr>