Hello there!
login: 7eleven/pizza100
We have a user profile outputting some peta keys: [[LINK href="http://jobtribe.com/company/7+Eleven"]]here[[/LINK]].
Now we wanna have a form somewhere [[LINK href="http://jobtribe.com/employer-dashboard"]]here[[/LINK]] where user can go edit or complete profile.
Thanks.
Arnav Joy answers:
you want fields here in this page
http://jobtribe.com/employer-dashboard
and under "Company profile" tab?
Navjot Singh answers:
You can use a plugin like https://wordpress.org/plugins/user-meta-manager/ or https://wordpress.org/plugins/user-meta/ which allows users to edit their profile fields from the frontend.
Reigel Gallarde answers:
Please remove you login here.. this page is open to public...
also change your password. I can help you.. message me your login after you changed it.
Monit Jadhav answers:
Ok So are you in need of something like a Edit profile page with meta fields editable?
intilabs comments:
yes Monit, that's exactly it!
Monit Jadhav comments:
You can show profile meta tags using
get_post_meta() function
http://codex.wordpress.org/Function_Reference/get_post_meta
Showing is easy part making them editable can and updating them is a bit tricky.
To make them editable create an edit button on the profile tab on which you can trigger a form that can post the meta values. To process the form use
Wp function update_post_meta
http://codex.wordpress.org/Function_Reference/update_post_meta
update_post_meta( $post->ID, 'Meta_field', sanitize_text_field( $_POST['Meta_field'] ) );
That I think should resolve your issue.