Divi Password Box lets you style password protected pages using the Divi Builder. Here's how to ensure that the cursor is focused in the password box module's password field when the page loads.
You should be able to do it by adding the following JavaScript to your site:
<script>
/* Focus on password box module, if present */
if (document.querySelector) {
var passwordBox = document.querySelector(".et_pb_dbpp_page_password_password");
if (passwordBox) {
passwordBox.focus();
}
}
</script>
You can add it in the "Divi > Theme Options > Integration > Add code to the < body >" box.
Merci c'est que je recherchais !
You're very welcome, Exocet-Web!