Protect what matters – even after you're gone. Make a plan for your digital legacy today.
Forum Discussion
Former Member
5 years agoTurning off field suggestions
I have not found a way to turn off the field suggestions. The problem I am having is that with multiple suggestions information on some forms are being hidden. I like the idea but it would be nice if...
ag_chantelle
1Password Team
5 years ago@scotttrinh
You can code the field as autocomplete="off", which will result in the inline menu being closed when the field is focused. Unfortunately, due to rampant misuse across the web, we can't guarantee that the extension will follow the autocomplete attribute 100% of the time.
An HTML id or HTML name starting or ending with search would also be something you could do without changing how the field is displayed and greatly improve the chance that we don't consider it interesting.
Using an HTML input type="search" should be a guarantee that we wouldn't show up, but this does inform browsers that it is a search field and cause them to react differently. For example, many browsers will display an icon in and clear the field if the user hits esc. Here is an example of a search field that will never display the 1Password inline menu: https://fill.dev/form/search
You might also find these links helpful:
- The HTML spec standard for autofilling: https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#autofill
- Our basic guide for developers: https://support.1password.com/compatible-website-design/
- Additional sample forms we use to test filling (login, signup, credit card etc): https://fill.dev/
I hope this information will point you in the right direction.