I did that.
I changed the URL from Profile/Members/{ID} to Profile/Members/{NAME}
and on the code block of the Site, i changed the last part of the code:
From:
export function button4_onclick() { wixLocation.to(
/Profile/Members/${wixUsers.currentUser.id});
To:
export function button4_onclick() { wixLocation.to(
/Profile/Members/${wixUsers.currentUser.name});
But that did not do the trick, it takes me to an error page : /Profile/Members/undefined
Any suggestions?