• How to do you remove or hide the “Your account” link within the logged in part of the Login Template please? I want to provide this function at a later date but not currently.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • @rodneyvarga

    If you want to hide the cog wheel dropdown link to “My Account”
    you can try this code snippet.

    Install by adding the code snippet to your active theme’s functions.php file
    or use the “Code Snippets” Plugin

    https://www.ads-software.com/plugins/code-snippets/

    add_filter( 'um_myprofile_edit_menu_items', 'um_myprofile_edit_menu_items_account', 10, 1 );
    
    function um_myprofile_edit_menu_items_account( $items ) {
    
        if ( isset( $items['myaccount'] )) {
            unset( $items['myaccount'] );
        }
        return $items;
    }
Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.