Attributes User Access is designed to provide an advanced yet lightweight authentication solution for WordPress. It empowers site administrators with detailed control over login processes, enhancing user authentication and access experience.
[attributes_login_form]
[attributes_login_form redirect="/dashboard" remember="false"]
redirect, Target URL after login (default : Dashboard)remember, Show “Remember Me” checkbox (default : true)form_id, Custom form identifier (default: attributes_login_form)Create a directory structure in your theme to mirror the plugin’s template location: your-theme/attributes/front/forms/login-form.php
Copy the original template from the plugin (templates/front/forms/login-form.php) to your theme’s directory as a starting point. Customize the template as needed.
The plugin uses a well-structured template with hooks that you can leverage:
attrua_login_form_fields – Add custom fields to the formattrua_after_login_form – Add content after the formattrua_before_login_form – Fires before rendering the login formattrua_after_login_form – Fires after rendering the login form attrua_login_failed – Fires when a login attempt failsattrua_successful_login – Fires after successful authenticationattrua_login_form_fields – Modify the login form fieldsattrua_login_redirect – Customize login redirectionattrua_login_error_message – Modify login error messages