• Resolved emmamiumiu

    (@emmamiumiu)


    Hello

    For the password reset, i would like to change the input type from text to email, is it possible ?

    On some environment, the input automatically add a capital letter when typing. So either be able to change the input to email or add autocapitalize=”off” would do the trick.

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support andrewshu

    (@andrewshu)

    Hello @emmamiumiu

    Unfortunately, this functionality does not exist in our plugin at this time.

    Regards.

    missveronica

    (@missveronicatv)

    @emmamiumiu

    You can try this code snippet doing a autocapitalize=”off”
    for the text input field in the UM Password Reset page.

    add_filter( 'um_username_b_form_edit_field', 'um_username_b_form_edit_field_autocapitalize', 10, 2 );
    
    function um_username_b_form_edit_field_autocapitalize( $output, $set_mode ) {
    
        $output = str_replace( ' autocomplete="', ' autocapitalize="off" autocomplete="', $output );
        return $output;
    }

    Install the code snippet into your active theme’s functions.php file
    or use the “Code Snippets” plugin.

    https://www.ads-software.com/plugins/code-snippets/

    Plugin Support andrewshu

    (@andrewshu)

    Hi @emmamiumiu

    This thread has been inactive for a while so we’re going to go ahead and mark it Resolved.

    Please feel free to re-open this thread if any other questions come up and we’d be happy to help. ??

    Regards

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘password-reset input email’ is closed to new replies.