Just a quick word about the concept of the 2 day conference I just attended, the SPBiz hosted by Collaboris. Online conferencing is great for so many reasons: no travel and hotel costs, the conference sessions started after work hours so you could enjoy it the entire evening (at least in my time zone), it’s …
Author: Lise Rasmussen
I have a form with a selection box where the user selects a Role, and based on that Role I set a multiselect field with the predefined values, in this case Applications. What I wanted to do, was to have the checkboxes selected by default OR not display the checkboxes at all. Because this should …
This is an update from my former blog post about showing likes and comments in a news web part. And I also get questions about how I have done this, and people saying that they never managed to do the same. So even if I updated the former blog post with this solution, it may …
When you want to publish a SharePoint site as a public website, you must enable anonymous access – otherwise the user will be prompted with a login. Note: This is for on premises servers and not the cloud/Office365. Open Central Administration on your server. Go to the Application Management section and then click the “Manage web applications” link. …
Strange thing that happened to my account. I am Site Coll Admin on all web sites on an on prem server, but one day the “Site Collection Administrators” and “Site Collection Features” links were gone from two of the sites (in Swedish): First thing I checked is in Central Administration and “Change Site Collection Administrators”I …
This is a quick fix! To change the icon that is displayed on the bookmark in a browser from the: To something more sexy, then do the following: Create a new folder in this location C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\TEMPLATE\IMAGES I named my folder “Custom”. This is always best practice, so that your changes …
There is an error reported in Health Analyzer on my SharePoint 2013 server regarding the Distributed Cache “current server is running low on memory”. So, the Distributed cache uses 10% of the total physical memory on the server. The Distributed Cache service uses half of that memory allocation for data storage (also known as cache …
[SOLUTION] I found that this button was disabled because of this line in my Master Page – I am using Bootstrap theme from Codeplex and that comes with its own master page. What I had to do was change this line in the header from: to (taken from Seattle master page) And now, the button is enabled …
This problem ONLY concerns IE11 and on a SharePoint site using the bootstrap theme. When you create a Team Site and add a Task list, the ribbon is disabled and either the Tasks nor the Timeline is visible. If you open the same site in IE10 or Chrome, it is visible and working. The site …
[SOLVED] Instead of relaying on the search crawler for the #Comments field, I simply added the following line in the Display Template and that works with continous crawling: _#= ctx.CurrentItem.NumComments =#_ [/SOLVED] I want to show both number of Likes and Comments in the News webpart, which I have built using Content Search and …