How can I remove the following excerpt from above the password field?
"Note: this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
I've tried making the following change is cimy_user_extra_fields.php with no luck.
>>>Before<<<
if ($is_mu)
$wp_password_description = "";
else
$wp_password_description = __('Note: this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!', $cimy_uef_domain);
>>>After<<<
if ($is_mu)
$wp_password_description = "";
else
$wp_password_description = __('', $cimy_uef_domain);
Any advice would be greatly appreciated. Thanks
- Steve