• Resolved ujavaid15

    (@ujavaid15)


    Hi UM support, thanks for the great plugin!

    I need some modification in Account Page, How can we update Profile & Cover Photo along with all user data such as Name, Email and password on the same page?

    Thanks in advance ??

Viewing 15 replies - 1 through 15 (of 16 total)
  • Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @ujavaid15

    Unfortunately, this requires customization on your end. Let’s see if others in the forum have done something similar and share the solutions here.

    Regards,

    Thread Starter ujavaid15

    (@ujavaid15)

    Thanks for the response, however, I tried to find things & learned somewhere that we can make a custom edit form for editing the profile info.
    I did same thing but unfortunately it gives error in password reset form.

    For example, on My account page, I have added the “Profile & Cover Photo” shortcode on my account page where “User info (name, email, password)” was also placed due to my account shortcode([ultimatemember_account]). But the password reset gives error here, when I remove “Profile & Cover Photo” shortcode, password reset works fine.

    Can you help me further on this what could be the issue?

    Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @ujavaid15

    How did you add the Profile & Cover Photo uploaders to the Account form? Do you have a custom code?

    Regards,

    Thread Starter ujavaid15

    (@ujavaid15)

    Hi @champsupertramp

    There is a profile shortcode present in the forms that is [ultimatemember form_id=”2489″].

    I placed this shortcode in the Account page at the top. After that, I placed the shortcode [ultimatemember_account].

    Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @ujavaid15

    Profile Form and Account form shouldn’t be on the same page. They have different functions – that’s why it doesn’t work. I suggest that you create the User/Profile page where you can add the shortcode for the Profile form that has the profile and cover photo.

    Regards,

    Thread Starter ujavaid15

    (@ujavaid15)

    But I need both information to be updated on same page.
    Doesn’t matter if they have different Forms. I don’t want user to navigate to different pages for Cover & profile photo, & email password etc.
    Need them on 1 page.

    Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @ujavaid15

    Both forms are not designed to be on the same page. Could you please provide a screenshot of the error that you’re seeing when you use the Password Reset?

    Regards,

    Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @ujavaid15

    This thread has been inactive for a while so we’re going to go ahead and mark it Resolved. …Please feel free to re-open this thread by changing the Topic Status to ‘Not Resolved’ if any other questions come up and we’d be happy to help. ??

    Regards,

    Thread Starter ujavaid15

    (@ujavaid15)

    Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @ujavaid15

    What happens when you enter the password?

    Regards,

    Thread Starter ujavaid15

    (@ujavaid15)

    When I enter current password, then new password, the new password field border becomes red. Then I re enter new password, the “new password” and “re enter new password” fields border turns to white.

    When I click on update, then after refreshing, the message appear as per the screenshot I sent: https://media.discordapp.net/attachments/918473537877078046/923424467718385684/unknown.png?width=768&height=406

    Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @ujavaid15

    Sorry for the late response.

    I just tried adding the UM Profile shortcode to the Account page along with the Account form shortcode. And then, I tried changing the password and it works on my end. I didn’t encounter the issue with the message that you’re seeing on your end.

    Please see my test in the video clip: https://drive.google.com/file/d/18_1bu02Mui44vwbw76FGhqh4Yokq_6tq/view?usp=sharing

    Did I try the same steps that you have tried to reproduce the issue?

    Regards,

    Thread Starter ujavaid15

    (@ujavaid15)

    Hi @champsupertramp
    Thanks for the video demonstration ??
    However, can you place the profile photo shortcode before the password reset?
    Means swap the position of shortcode & then try to check, my issue seems to be happening due to this.

    Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @ujavaid15

    I’m experiencing the issue after swapping the place. I suggest that you use the UM Profile Photo basic plugin and add the following code to add the Profile Photo uploader to the Account > General.

     add_filter( 'um_account_tab_general_fields', 'um_011921_add_profile_photo_uploader', 10, 2 );
    function um_011921_add_profile_photo_uploader( $args, $shortcode_args ) {
    
        $args = 'register_profile_photo,' . $args;
        return $args;
    }

    You can add the code to your theme/child-theme’s functions.php file or use the Code Snippet plugin to run the code.

    Regards,

    Thread Starter ujavaid15

    (@ujavaid15)

    Alright, thank you so much for the solution.
    However in my case, I fixed this using CSS where I swapped the positions of columns using CSS to make them work correctly ??

    Marking this issue resolved. thanks for the support (y)

Viewing 15 replies - 1 through 15 (of 16 total)
  • The topic ‘Changing Profile & Cover Photo, User info (name, email, password)’ is closed to new replies.