Hello, is there any easy way to prohibit users from editing their profiles? Is it safe to edit profile.php and make it just informational like "you can edit your profile there and there"?
And I also have another question: if users comment, there is their nick displayed next to the comment, where can I edit this link?
Thanks a lot
Hello, is there any easy way to prohibit users from editing their profiles?
I'd just delete the page or put in a die(); right at the front of the file myself.
if users comment, there is their nick displayed next to the comment, where can I edit this link?
I think you're thinking of wp-includes/comment-template.php, take a look at the get_comment_author_link and get_comment_author_url_link functions.
drmike: thanks.. you saved me quite a lot of time finding those functions etc etc..