• Resolved ixiter

    (@ixiter)


    I cannot update the extended profile.
    Reason is the missing jQuery( '#'+formid+' .all_errors' ) element on the extended profile edit page.

    file: profile-magic-admin.js
    line 1689:

    var error = jQuery( '#'+formid+' .all_errors' ).html();
    if (error == '') {
    return true;
    } else {
    return false;
    }

    Since the jQuery( '#'+formid+' .all_errors' ) element is missing, error = undefined, which results in the else part and returns false. The form will never be submitted.

    I fixed it, adding following workaround code at line 1689:
    if (jQuery( '#'+formid+' .all_errors' ).length == 0) {
    jQuery( '#'+formid).prepend('<div class="all_errors" style="display:none;"></div>');
    }

    • This topic was modified 6 months, 1 week ago by ixiter.
Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author ProfileGrid Support

    (@profilegrid0)

    Hello @ixiter,

    Thank you for informing us. Could you please clarify where you are seeing this or share a screenshot of the issue so we can investigate and analyze it?

    Thread Starter ixiter

    (@ixiter)

    Sure.

    URL: /wp-admin/users.php?page=bp-profile-edit
    The “Update Profile” Button doesnt submit the form.

    Plugin Author ProfileGrid Support

    (@profilegrid0)

    Hello @ixiter,

    It appears that you are using BuddyPress on your site. Both ProfileGrid and BuddyPress are profile-related plugins, so this seems to be a conflict between them. The page URL you’ve shared is not related to our plugin; it belongs to BuddyPress. Please address this issue with their plugin support.

    Let us know if you have any other questions.

    Thread Starter ixiter

    (@ixiter)

    Thank you for your reply.

    I started a topic at BP support forum. Waiting for answer.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘cannot update extended profile’ is closed to new replies.