Saving account settings...

alt=
Marla
@sweet
6 days ago
57 posts
I have a custom popup for profile and account settings. All inputs are saving but I'm having issues saving the profile image. What button/save code do I need to get the image saved to the users data/media/profile_id folder?

Thanks!
michael
@michael
5 days ago
7,827 posts
Usually that's taken care of automatically, but from a modal view it might not be. Checkout the function jrCore_save_all_media_files() and

        if (jrCore_is_uploaded_media_file('jrProfile', 'profile_image', $pid)) {
            jrCore_save_media_file('jrProfile', 'profile_image', $pid, $pid, null, null);
        }
alt=
Marla
@sweet
5 days ago
57 posts
Thank you!

Tags