Цитата:
Сообщение от Elenka
Помогите пожалуиста, как сделать, чтобы поиск выглядел как окошечко для ввода слова и рядом кнопка Искать( стандартно как на всех сайтах), у меня поиск только расширенный получается, когда просто есть кнопка поиск и при нажатии на нее в поле CONTENTа появляется форма поиска расширенного( подкл. расширение search в typo3)
|
для расширения Indexed Search в html-шаблон достаточно добавить что-то вроде:
Код:
<form action="index.php?id=999" id="quicksearch" name="quicksearch" method="post">
<input type="hidden" value="0" name="tx_indexedsearch[_sections]" />
<input type="hidden" value="_" name="tx_indexedsearch[_freeIndexUid]" />
<input type="hidden" value="0" name="tx_indexedsearch[pointer]" />
<input type="hidden" value="" name="tx_indexedsearch[ext]" />
<input type="hidden" value="1" name="tx_indexedsearch[type]" />
<input type="hidden" value="0" name="tx_indexedsearch[defOp]" />
<input type="hidden" value="-1" name="tx_indexedsearch[media]" />
<input type="hidden" value="rank_flag" name="tx_indexedsearch[order]" />
<input type="hidden" value="flat" name="tx_indexedsearch[group]" />
<input type="hidden" value="0" name="tx_indexedsearch[lang]" />
<input type="hidden" value="0" name="tx_indexedsearch[desc]" />
<input type="hidden" value="10" name="tx_indexedsearch[results]" />
<input class="search_input" type="text" value="" name="tx_indexedsearch[sword]" size="10" />
<input type="image" name="tx_indexedsearch[submit_button]" src="fileadmin/templates/images/icon-glass.gif" class="search_submit" />
</form>
где 999 - id страницы с результатами поиска
удачи =)