Hello,
With the Author Social Profile Information section on a users Admin Profile if you add a few entries, save. Then remove all entries and save you'll find they don't get removed once it reloads.
This is caused by no delete_user_meta being implemented within the save_vibe_social_profile_fields function in includes/extras.php of the wplms theme.
To correct the issue simply update the method by adding an else to remove the meta like this;
if(isset($_POST['social']))
update_user_meta( $user_id, 'social', $_POST['social'] );
else
delete_user_meta( $user_id, 'social' );
Can this be rolled into the theme by default to remove this issue.
Thanks
Thanks for highlighting this important issue. We'll be making these changes in the theme as well.
However,
We'll be removing this section entirely from the theme and as an alternative, we'll add an option in the BuddyPress profile itself.