• Resolved 1916

    (@1916-1)


    Hello,
    This plugin is really great! I’ve just one question: on the My account page, how can I remove the “Dashboard” Tab? So the “Profile Details” will be the first Tab on this page…
    Thanks for the help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi there,

    Dashboard is the default tab. We don’t have automatic option for this. However, you can still acheive this by adding the following codes to your child theme’s functions.php

    add_filter( 'user_registration_account_menu_items', 'ur_remove_dashboard', 10 );
    function ur_remove_dashboard( $items )  {
    	unset( $items['dashboard'] );
    	return $items;
    }

    To remove all other tabs you may simply leave the endpoints empty on User Registration->Settings->General->My account section.

    Hope this helps!

    Thread Starter 1916

    (@1916-1)

    Top! Thanks a lot

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove Dashboard tab’ is closed to new replies.