Change the link text for Account Settings

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!

Worked for me, cheers!

$(document).on('knack-view-render.any', function(event, view, data) {

$("a.kn-view-asset").html("View");

});

I was using this code, but I think it just broke with the last knack update.

Figured it out.

$(document).on('knack-scene-render.any', function(event, scene) {

$("a.kn-account_settings").html("Change Password");

});