Hide Conversations from Search

If you want to hide the “Conversations” options from the dropdown menu that is shown after the Search box, the easiest way is to CSS hide it. Set the following class to “display:none”. #ctl00_PlaceHolderSearchArea_SmallSearchInputBox1_csr_NavDropdownList div:nth-child(3){display:none;}   Then you want to remove the same option from the Search center page (results.aspx) also. Edit the Search page …

Setup an app store in SharePoint

If you want to create your own SP app store, then you need to go through quite a few steps.. Here we go!In Central AdminFirst create a new app catalog site   I created one on http://server:2013/sites/apps   Create the app mgmt service application and the Subscription service app Create the subscription service app $account = Get-SPManagedAccount …