Notifications
Clear all

wpForo 1.x.x [Closed] How to translate reset password form help text

5 Posts
2 Users
2 Reactions
965 Views
Posts: 14
Topic starter
(@kenfern)
Eminent Member
Joined: 3 years ago

How to change the reset password form help text below:

Hint: The password should be at least twelve characters long. To make it stronger, use upper and lower case letters, numbers, and symbols like ! " ? $ % ^ & ).

I searched for it in phrases and didnt find it. I then added it, cleared all caches but it still doesnt show translated. 

4 Replies
Posts: 14
Topic starter
(@kenfern)
Eminent Member
Joined: 3 years ago

Anybody have any ideas here? This is one of the last things I need to clear up before launch. 

Posts: 14
Topic starter
(@kenfern)
Eminent Member
Joined: 3 years ago

Does rebuild all phrases delete all changes you have made? I want to try that but I have translated alot of things that I don't want to lose and have to do again. Just cant get this one to work on the password reset page. 

2 Replies
Chris
(@chris)
Joined: 3 years ago

Famed Member
Posts: 3647

@kenfern,

That phrase is WordPress Default not wpForo, you can edit with Loco translate or check the below link:

https://wordpress.stackexchange.com/questions/280714/change-password-hint/280719

(@kenfern)
Joined: 3 years ago

Eminent Member
Posts: 14

@chris Thanks for the hint. I added a filter to functions.php in my child theme and it worked like a charm:

add_filter( 'password_hint', function( $hint )
{
return __( 'Must contain a minimum of 8 characters (longer is better), upper and lower case letters, numbers and special characters.' );