• I apologize if this has been asked before, but I can’t find an answer. I want to create a portion of my custom page where the user can edit their email, name, etc. I tried creating a profile form and pasting the shortcode into a section of my PHP, but all that shows up is their email address, and even that I can’t edit. It’s just a link to mailto them. What am I missing?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support Ultimate Member Support

    (@ultimatemembersupport)

    Hi @krpkevin,

    Have you added additional fields to your profile form in Ultimate member -> Forms -> your profile form? You can also allow your users to edit email address in Ultimate member -> Settings -> Users and “Editable primary email field in profile view”.

    Regards.

    Thread Starter krpkevin

    (@krpkevin)

    That didn’t work either. It just shows the fields, but you can’t edit them. I moved on though. I dug into the native wordpress options: wp_update_user() and update_user_meta(). That got the job done.

    Thanks anyway,
    Kevin

    Hi,

    we also got this issue and we do not see this setting Ultimate member -> Settings -> Users and “Editable primary email field in profile view”.

    has this been relocated?

    thanks,

    vicky.

    Bump !
    I cant see this option either !
    And i cant see either the email field in my profile, i’ve added the field in the form builder.
    Someone has resolved this issue ?

    By the way, this plugin is really nice ??

    Well the only solution i found is to tweak the plugin to force the option “editable_primary_email_in_profile”.

    In the plugin folder /ultimate-member/includes/core/class-fields.php
    Replace the line 1656 :
    if ( UM()->options()->get( ‘editable_primary_email_in_profile’ ) == 1 ) {
    By :
    if ( UM()->options()->get( ‘editable_primary_email_in_profile’ ) != 1 ) {

    I guess this option should be stored in the DB, but i was not able to find it.
    I assume this is a temporary solution. I had to fix it hurry, so i choose the “hard way” ??

    Take care ! Choose this solution only knowing what you’re doing ! Hope it helps !

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Edit user info’ is closed to new replies.