Page 1 of 1

Search Box Issue

PostPosted: 09 Oct 2015, 16:25
by browser
when i enter some words in "Search by description or address" textbox and after that select some "property type" from select box , entered value in
"Search by description or address" textbox is hide..
How to show entered "Search by description or address" textbox value after selecting the property type.

Re: Search Box Issue

PostPosted: 13 Oct 2015, 10:42
by Koduc
Open file /protected/modules/quicksearch/controllers/MainController.php
find
if ($term && $doTermSearch == 1) {
and replace with
if ($term) {

Find line
public function actionLoadForm(){
and insert to next line:
$this->term = Yii::app()->request->getParam('term');