Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

User Meta Edit WordPress

  • REFUNDED

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.

Answers (4)

2015-02-25

Arnav Joy answers:

you want fields here in this page

http://jobtribe.com/employer-dashboard

and under "Company profile" tab?

2015-02-25

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.

2015-02-25

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.

2015-02-25

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.