Blog Post

Opening the SharePoint Site Settings screen instantly using a keyboard shortcut

Clavin Fernandes
Illustration: Opening the SharePoint Site Settings screen instantly using a keyboard shortcut

As we are active SharePoint developers, hey it is all we do, we need access to the Site Settings screen on a regular basis. As ’real developers’ we prefer keyboard shortcuts as, quite frankly, picking up the mouse, navigating to the Site Actions menu and then clicking Site Settings is just waaaay too time consuming.

A couple of months ago we came around a cool tool from Jaap Vossers, which installs a web control on your SharePoint server to automatically hook up the ctrl-s key to the Settings screen. As we don’t like to install any new software on our servers we challenged Jaap to rewrite it in such a way that it would work with our free SharePoint Infuser tool, which has the ability to automatically inject any script or HTML in all pages on a site collection without causing any nasty side effects such as ghosting etc.

InlineSettings

It took Jaap a cool hour to change things around, make it look all pretty, and release it as a CodePlex project. It works fantastically and it is now enabled by default on all site collections on our development servers.

Follow the steps outlined below to add this great trick to your site collection:

  1. Download and install Muhimbi’s SharePoint Infuser on one of your Web Front End Servers.

  2. Ensure you have Designer privileges, more specifically the Add and Customize Pages right.

  3. In your SharePoint Site collection, on the Site Actions / Site Settings screen, select Infuse custom content from the Look and Feel column.

  4. Paste the code displayed below into Infuser’s code window. If you are using IE then you may want to paste it in WordPad first , otherwise all line breaks are stripped out.

  5. Click the Save button, navigate to any page in the site collection and press ctrl-s.

<link rel="stylesheet" type="text/css"

      href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/cupertino/jquery-ui.css"/>

<script src="/_layouts/Muhimbi.Infuser/JQuery/jquery-1.3.2.min.js"></script>

<script src="https://js-hotkeys.googlecode.com/files/jquery.hotkeys-0.7.8-packed.js"></script>

<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.js"></script>

<script type="text/javascript">

function ToggleInlineSiteSettings()


{

  var dlg = $("#InlineSiteSettingsWrapper");


  if(dlg.dialog("isOpen"))

  {

      $("#InlineSiteSettingsWrapper").dialog('close');

  }

  else

  {

      $("#InlineSiteSettingsWrapper").dialog('open');

  }

  return false;

}

$(document).ready(function()

{

  var hasPermissions = $("[id$='_MenuItem_Settings']").size() > 0;

  if(hasPermissions)

  {

      $(document).bind("keydown", "Ctrl+s", ToggleInlineSiteSettings);

      var siteSettingsUrl = L_Menu_BaseUrl + "/_layouts/settings.aspx";

      $("<div id='InlineSiteSettingsWrapper'></div>")

        .css("background-color", "white")

        .load(siteSettingsUrl + " #ctl00_PlaceHolderMain_SettingLinks")

        .dialog({ width: "90%", modal: true, autoOpen: false});

    }


});

</script>
Author
Clavin Fernandes Developer Relations and Support Services

Clavin is a Microsoft Business Applications MVP who supports 1,000+ high-level enterprise customers with challenges related to PDF conversion in combination with SharePoint on-premises Office 365, Azure, Nintex, K2, and Power Platform mostly no-code solutions.

Explore related topics

Share post
Free trial Ready to get started?
Free trial