htmly
htmly copied to clipboard
Title autocomplete
This really bugs me and probably a few other people. I did try fixing it myself but I don't know that much about coding. Also thank you for making this its really great and easy to setup.
That's a feature of your web browser. You could either clear your browser's cache before adding a new post or by removing previous entries from the list by pressing the Del
key when the entry is highlighted.
Thanks! But still adding something to have it not happening would be great.
Hi dotziph, Please can you try if this could be coded in your theme? Thanks!
Thanks! But still adding something to have it not happening would be great.
At line 90 of system/admin/views/add-content.html.php change:
<input autofocus type="text" class="form-control text ...
to:
<input autocomplete="off" autofocus type="text" class="form-control text ...
Beware! This is a quick hack to HTMLy core. So, whenever this file is overwritten by an update, you have to change it again.
Thanks! But still adding something to have it not happening would be great.
At line 90 of system/admin/views/add-content.html.php change:
<input autofocus type="text" class="form-control text ...
to:<input autocomplete="off" autofocus type="text" class="form-control text ...
Beware! This is a quick hack to HTMLy core. So, whenever this file is overwritten by an update, you have to change it again.
Thanks for this info!
You're welcome. If that worked for you, please close this issue afterwards.