• Resolved gordie303

    (@gordie303)


    Testing this before I go live with clients password is gordie
    Tried this
    // Add this to your theme’s functions.php file or use a plugin like Code Snippets
    add_filter( ‘sunshine_main_menu’, ‘custom_sunshine_main_menu’, 999 );
    function custom_sunshine_main_menu( $menu ) {
    unset( $menu[100] );
    unset( $menu[110] );
    return $menu;
    }
    and this
    // OR, alternatively add this to Sunshine > Settings > Design > Custom CSS
    li.sunshine-login, li.sunshine-register { display: none; }
    but links still there

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

Viewing 1 replies (of 1 total)
  • This required putting a little more specific CSS for this theme:

    #sunshine .sunshine-main-menu li.sunshine-login, #sunshine .sunshine-main-menu li.sunshine-register { display: none !important; }

Viewing 1 replies (of 1 total)
  • The topic ‘Can’t remove Login and register links’ is closed to new replies.