@maxkrak
“Confirm password” is user changeable from UM version 2.2.0
The password field with a user text option in building the forms: “Confirm password field label”
Enhancements:
Added: Custom placeholder setting for the Confirm Password field
https://github.com/ultimatemember/ultimatemember/releases/tag/2.2.0
The translation should be of: Confirm %s
found in /plugins/ultimate-member/includes/core/class-fields.php
2396 $output .= $this->field_label( sprintf( __( 'Confirm %s', 'ultimate-member' ), $data['label'] ), $key, $data );
2415 $placeholder = sprintf( __( 'Confirm %s', 'ultimate-member' ), $placeholder );
2417 $placeholder = sprintf( __( 'Confirm %s', 'ultimate-member' ), $data['label'] );
Note:
Don’t change any UM source files manually as these changes will be lost when you install the next UM update.
Use the “Say what?” plugin for special translations when Loco translate can’t be used.
https://wordpress.org/plugins/say-what/
-
This reply was modified 4 years, 10 months ago by
missveronica.
-
This reply was modified 4 years, 10 months ago by
missveronica.
-
This reply was modified 4 years, 10 months ago by
missveronica.
@missveronicatv
Thanks a lot! I used the plugin “Say what?” and it really worked out!
But there is one more problem with the translation, I hope you can tell me, in the “Bookmarks” tab there are two words that are not translated by either Loco Translate or Say what.
Here is a screenshot – https://clip2net.com/s/4cPFN75
Do you know how to translate these words?
@maxkrak
Sorry but “User Bookmarks” is an UM paid extension without support in this Forum and you have to supply a support ticket via the UM homepage https://ultimatemember.com/support/ticket/.
-
This reply was modified 4 years, 10 months ago by
missveronica.
@missveronicatv
Ok. Another question arose with the Confirm Password – how to remove the transparent inscription? – https://clip2net.com/s/4cQFfgz ?
Hi @maxkrak
Unfortunately, there’s no filter hook to modify the placeholder text. You can try this javascript to remove the placeholder text:
jQuery("input[id='confirm_user_password']").attr("placeholder","");
Regards,
@champsupertramp
Thanks for the answer, but where should I paste this code?