When i search a word in search box it gives related search from complte website and also shows the serch history overlaps search suggestions . I have lots of googled but don't know how to shortout this problem. Suggest plzz. Thanks,Monika
Asked
Active
Viewed 1,105 times
0
-
1Why not post your question at http://wordpress.stackexchange.com/? You might be able to find help more quickly. – woodykiddy Oct 06 '12 at 06:40
-
Could you at least give us a link or something so we can see what's going on? – Miha Rekar Oct 06 '12 at 08:13
-
http://worklab.in/wordpress/farsiban2/ check it – Monika Oct 06 '12 at 09:32
1 Answers
2
All WordPress sites set name='s'
for their search forms, so your browser will make suggestions based on queries you've entered on other WordPress sites.
You can disable it by setting autocomplete='off'
.
For example:
<input type="text" name="s" autocomplete="off" />

Chris Fletcher
- 2,367
- 1
- 16
- 19
-
Further reading: http://stackoverflow.com/questions/2530/how-do-you-disable-browser-autocomplete-on-web-form-field-input-tag – Chris Fletcher Oct 06 '12 at 16:02
-