• Resolved a298e

    (@honeybb)


    Please let me know how to remove

    “Edit Your Information” link from [wp-members page=”members-area”] page after login

    and

    “Forgot password? Click here to reset” and “New User? Click here to register” from [wp-members page=”members-area”] page of Log in Form before login?

    Using WP ver.3.8.1, WP-Members ver.2.8.10

    https://wordpress.org/plugins/wp-members/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Chad Butler

    (@cbutlerjr)

    The forgot password and new user register links in the login form show when you have set the location of the user profile page and the register page under “Pages” in the plugin’s options tab. If you don’t want those links to show, then remove those settings since that’s all they do.

    You could also filter them out with one of the following filters:

    The edit info link in the user profile update can be removed by filtering it out with wpmem_member_links.

    Thread Starter a298e

    (@honeybb)

    Hello Chad,

    Thank you for your kind reply!

    I tried to remove wpmen_member_link, but it wasn’t removed.
    Below is code which I added to function.php in my theme(using twentyten) child folder. Sorry for I’m not good at coding, but I would like to know correct code.

    ——
    if ( ! function_exists( ‘wpmem_member_link’ ) ):
    remove_filter( ‘wpmem_member_link’, $link );
    endif;
    ——

    I also tried to change wpmem_forgot_link to another link string letter using usage of http://rocketgeek.com/plugins/wp-members/users-guide/filter-hooks/wpmem_forgot_link/, but my change didn’t reflected.

    Please let me pose another question.
    I would like to customize, if click “Edit Your Information” link, then bbPress User Profile edit page is opened. Is it possible?

    Thread Starter a298e

    (@honeybb)

    After Update of WP ver.3.8.1 to 3.9.1 and WP-Members ver.2.8.10 to 2.9.2, my setting for wpmem_forgot_link was correctly functioned. Sorry for bothering.

    Thank you!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to remove "Edit Your Information" link etc.’ is closed to new replies.