Пример:
http://www.historiosophy.ru/search?query=%D0%B1%D1%83%D0%B4%D0%B4%D0%B0&look=allwords&from_component%5B%5D=content&from_component%5B%5D=shop&from_pubdate=&order_by_date=1
Нельзя снять галочку "сортировать по дате публикации"
http://www.historiosophy.ru/search?query=%D0%B1%D1%83%D0%B4%D0%B4%D0%B0&look=allwords&from_component%5B%5D=content&from_component%5B%5D=shop&from_pubdate=&order_by_date=1
<label id="order_by_date" class="selected"> <input name="order_by_date" onclick="toggleInput('order_by_date')" type="checkbox" value="1" checked="checked" />
checked="checked"
value="0"
<label id="order_by_date" class="selected"> <input name="order_by_date" onclick="toggleInput('order_by_date')" type="checkbox" value="0" />
order_by_date=1
order_by_date=0
то о чём писал Lora сделайте в templates\шаблон\components\com_search_text.tplСделал, но не помогло. Изменений в поиске не произошло.
<label id="order_by_date" {if $order_by_date}class="selected"{/if}> <input name="order_by_date" onclick="toggleInput('order_by_date')" type="checkbox" value="1" {if $order_by_date}checked="checked"{/if} />
<label id="order_by_date" {if $order_by_date}class="selected"{/if}> <input name="order_by_date" onclick="toggleInput('order_by_date')" type="checkbox" value="0" {if $order_by_date}checked=""{/if} />
Пришлось всё же посмотреть чтобы не гадать.
Уже ближе… в файле templates\шаблон\components\com_search_text.tpl
$this->order_by_date = cmsCore::inRequest('order_by_date') ? cmsCore::request('order_by_date', 'int', 1) : 0;