I'm looking to change the link text for Account Settings to "Change Password". I designed my own Account Settings page but I like the change password function on the default Account Settings better. My plan is to hide the other fields and only show the Password part. I tried the script below but for some reason it only changes the text on 2 pages when I have at least 5 as of now.
$(document).on('knack-view-render.any', function(event, scene) {
$("a.kn-account_settings").html("Change Password");
});
Thanks in advance!