
Even if you do not use any membership plugin, you can enable a user to edit his/her profile from the exclusive profile page that Admin can easily by using the shortcode provided by LearnDash – [ls_profile]. Now on that
Three Steps for Enabling Edit on Profile Page
Step 1: Install Code Snippet plugin . This will make life easier for inserting code.
Step 2: Copy the code given below and change the URL of
add_filter( 'get_edit_user_link', function( $link, $user_id ) { $link = "https://www.google.com/"; return $link; }, 30, 2 );
Change the Page link ( replace https://www.google.com ” with your profile page ( page in which [ld_profile] was pasted
Step 3: Create New in Code Snippet, paste and save