• Resolved sohom

    (@sohom)


    Hi,
    Help me to remove “Account Details” tab from My Account Page as I am using some other plugin for User Registration and Profile, and “Account Details” page creating issue.

    As I am not allowing users to register with same Display Name, but users can change Display name from “Account Details” page.

    Thanks in advance.

Viewing 4 replies - 1 through 4 (of 4 total)
  • @sohom

    add this to your childthemes functions.php:

    add_filter ( 'woocommerce_account_menu_items', 'remove_my_account_links' );
    function remove_my_account_links( $menu_links ){
    	unset( $menu_links['edit-account'] ); // Remove Account details tab
    	
     
    	return $menu_links;
     
    }
    Plugin Support Tseten a11n

    (@tibetanitech)

    We haven’t heard back from you in a while, so I’m going to mark this as resolved – if you have any further questions, you can start a new thread.

    Thread Starter sohom

    (@sohom)

    Thank you @braehler Code worked perfectly.
    @tibetanitech I am sorry for the late reply as we has encountered a cyclone here. We had issues with electricity and internet.

    Thanks again to @braehler and @tibetanitech

    @sohom
    you′re welcome

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Help me to remove “Account Details” tab from My Account Page’ is closed to new replies.