After upgrading to the main MetaBox plugin to 5.10.9, the password reveal icon does not show anymore update on my front facing change password form.
$meta_boxes[] = [
'title' => false,
'id' => 'my-update-password',
'type' => 'user',
'fields' => [
[
'name' => __( 'New Password', 'mb-user-profile' ),
'id' => 'user_pass',
'type' => 'password',
'required' => true,
'save_field' => false,
'append' => '<i class="password-icon show-icon"></i>',
'desc' => '<span id="password-strength" class="rwmb-password-strength"></span>'
],
[
'name' => __( 'Confirm Password', 'mb-user-profile' ),
'id' => 'user_pass2',
'type' => 'password',
'required' => true,
'save_field' => false,
'append' => '<i class="password-icon show-icon"></i>',
]
],
];
After the 5.10.9 update, the /wp-content/plugins/mb-user-profile/assets/password.css?ver=2.5.8 is not anymore being loaded. If I remove 'append' => '<i class="password-icon show-icon"></i>', from my password fields, a different password reveal icon shows up but when clicking on it nothing happens.
Do you mind looking into this?