Hi all,
I’m putting together a form and password manager icons (from brower extensions like lastpass, keeper, 1Password, etc) show up in my input fields (when the input type is “short answer”). Anyone know of a way to hide those? I tried the long answer type, however users who hit enter will create a new line. None of the other types seem to make sense. Also ChatGPT’s suggestion of an attribute or CSS also don’t seem to change it.
Thanks for the help!
Hi @esowers 
Browsers and extensions inject those password manager icons themselves, so there isn’t a WeWeb toggle for this.
You could try to:
- Add
autocomplete="off" to your input in WeWeb via the Attributes panel.
- For LastPass, also add
data-lpignore="true" on the same input, which tells LastPass to skip that field.
- If a specific manager still injects an icon, you may hide it with custom CSS targeting that icon’s injected element, but this depends on each extension and can change over time.
Because these icons come from user extensions, there’s no fully universal way to block every password manager.