看图中的位置猜想,你应该打算把搜索框向上移动。
解决办法就是把钩子排序:
首先打开/plugin/xn_search/conf.json 内容如下:
{
"name": "Xiuno BBS 搜索插件 for 4.0 正式版",
"brief": "采用 MySQL FULLTEXT 实现全文搜索,Xiuno BBS 4 采用独特的处理方式,支持中文高效搜索(请设置 my.cnf 中的 ft_min_word_len=2)。",
"version": "3.4",
"bbs_version": "4.0",
"installed": 1,
"enable": 1,
"hooks_rank": {
"index_site_brief_after.htm": 10
},
"overwrites_rank": [],
"dependencies": []
}
你会发现有一行
"index_site_brief_after.htm": 10
的内容,这个就是首页右侧的搜索框钩子文件,后面的10是该钩子的权重也就是排序,数字越大越靠前。
接下去我们在其后增加板块页和帖子页的搜索框排序。
"index_site_brief_after.htm": 10,
"forum_mod_before.htm": 10,
"thread_user_after.htm": 10
完整的演示效果如下:
{
"name": "Xiuno BBS 搜索插件 for 4.0 正式版",
"brief": "采用 MySQL FULLTEXT 实现全文搜索,Xiuno BBS 4 采用独特的处理方式,支持中文高效搜索(请设置 my.cnf 中的 ft_min_word_len=2)。",
"version": "3.4",
"bbs_version": "4.0",
"installed": 1,
"enable": 1,
"hooks_rank": {
"index_site_brief_after.htm": 10,
"forum_mod_before.htm": 10,
"thread_user_after.htm": 10
},
"overwrites_rank": [],
"dependencies": []
}