Hi:
How can I add a value in the "Title" field inside the "Profile Fields" in the Meta Box from a front end form? I tried this but writes in the meta box and also the custom field:
add_post_meta($pid, 'profile_title', $metabox, true);
And the same for reading from the front end, this reads the custom field but not the meta box:
echo get_post_meta($post->ID, 'profile_title', true);
Thank you!
Daniel.