Hello Everyone,
I'm an extreme WP newbie, but a seasoned PHP and SQL/MySQL Vet. I'm working on a WP site for a friend, and I am really stuck. I will give you the run down.
His request was for two things.
First, he wanted a whole bunch of new fields added to the "Users" table. So, that was to involve adding fields to the 'wp_users' table, and editing the wp-admin "adduser" and user-edit files/functions. After many hours of playing around with the core code, I finally realized that I really needed to store this info in the 'wp_usermeta' table. Long story short I now have that stuff working well.
His next request is killing me. I thought it would be the easiest part(isn't that always the way?) He wants his page to be a members only page, meaning they need to sign in before seeing anything. Easy enough thanks to the "Members Only" plugin, which is working perfectly. The thought was that once the user has signed in, they would be able to edit their profile by clicking some kind of "Edit Profile" link.
So my question is, is there a plugin to be able to add a link to my WP page, saying "Edit Profile", which would bring them to a custom profile page, which I could add these extra fields to? (throw another wrench in the question, he wants only some of the new fields to be editable by the user, the rest would only show up if the signed in user is an admin) I looked into the Cimy plugin, but it creates a whole new table, which I don't want.
I apologize if this is a really stupid question. I have spent about an hour searching the web and this forum and haven't come across the answer yet.
Any help is appreciated.
Dan