"Please enter the keyword at least 3 characters"
Where do I change this to 2 characters.
Thank you
Ike
"Please enter the keyword at least 3 characters"
Where do I change this to 2 characters.
Thank you
Ike
You should edit search.php line 29
to:PHP Code:if(empty($keyword) || strlen($keyword)<3) {
PHP Code:if(empty($keyword) || strlen($keyword)<2) {