Magento’s search box display a rather horrid looking/ slow loading search suggest box underneath as you type a search.
Where is the best place in the code to remove this feature.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could give either a try:
In Magento template’s css file, find:
.search auto-completeand add:
display: none;to get:
.search-autocomplete { display: none; }You’ll have to make sure your css gets refreshed.
ORLook for this:
\template\catalogsearch\form.mini.phtmland remove or comment out the line containing:searchForm.initAutocomplete(.......