묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
검색에서 특정항목을 없애는 방법
2008.12.12 23:03
보통 게시판에서 검색기능은
제목, 내용, 제목+내용,댓글,이름,닉네임등 여러가지 항목이 검색항목으로 설정되어 있는데
저는 제목,내용만 남기고 다 지우고 싶은데 어디서 지워야 하나요?
제목, 내용, 제목+내용,댓글,이름,닉네임등 여러가지 항목이 검색항목으로 설정되어 있는데
저는 제목,내용만 남기고 다 지우고 싶은데 어디서 지워야 하나요?
댓글 3
-
느까끼
2008.12.12 23:37
-
오_뚜기
2008.12.13 00:08
먼저 항상 관심 가져 주셔서 정말로 감사드립니다
결과는 N.G입니다.
님이 한대로 수정했습니다만 검색창에는 제목+내용,댓글,태그 전부 다 나타나네요..
서로 환경이 틀려서 그런지 모르겠지만... 저는 잘 안되네요... -
느까끼
2008.12.13 09:56
modules/intergration_search/intergration_search.view.php에서
// 검색대상 변수 설정
$search_target = Context::get('search_target');
if(!in_array($search_target, array('title','content','title_content','comment','tag'))) $search_target = 'title';
modules/intergration_search/lang/ko.lang.php에서
$lang->is_search_option = array(
'title' => '제목',
'content' => '내용',
'title_content' => '제목+내용',
'comment' => '댓글',
'tag' => '태그',
);