How can I hide the "Keyboard Shortcuts" and the "Desktop View" from the hamburger menu?

How can I hide the “Keyboard Shortcuts” and the “Desktop View” from the hamburger menu?

1 Like

You can add this CSS to your theme (admin > customize > themes)

.panel {
  .keyboard-shortcuts-link,
  .mobile-toggle-link {
    display: none !important;
  }
}
6 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.