Can't Remove all Social Information

Home Forums Legacy Support Support queries Other issues Can't Remove all Social Information

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #42844
    eclipsedev
    Spectator
    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
    #43087
    H.K. Latiyan
    Participant
    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.
    #43223
    eclipsedev
    Spectator
    Thank you
Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Can't Remove all Social Information’ is closed to new replies.