by jeremy@bondbyte.com | Apr 11, 2014 | SharePoint 2013
Site Templates don’t work on publishing sites, there are many reasons for this, master pages, page layouts, etc. The stuff doesn’t export / Import well. Some times you need just need to get to the site template for development reasons and what not. This is...
by jeremy@bondbyte.com | Apr 11, 2014 | Javascript, SharePoint 2013
In SharePoint 2013 they added a Script Editor WebPart. Add this to a page and add the following code in the WebPart Editor.
by jeremy@bondbyte.com | Apr 11, 2014 | SharePoint 2010, SharePoint 2013, Web Parts
Open Visual Studio 2012. Go to File-Open-Project/Solution, locate the file you want to upgrade. (let it do the normal upgrade) Close the project and save changes. Open the *.csproj file in Notepad or some other type of text editor. Change the TargetFrameWorkVersion...
by jeremy@bondbyte.com | Apr 11, 2014 | Powershell, SharePoint 2013
The following PowerShell script will return Template Name and the Internal ID. $url = “http://sp2013/” $site= new-Object Microsoft.SharePoint.SPSite($url ) $loc= [System.Int32]::Parse(1033) $templates= $site.GetWebTemplates($loc) foreach ($child in $templates){...
by jeremy@bondbyte.com | Apr 11, 2014 | Error, SharePoint 2013
The solution cannot be deployed. Directory “FeatureDirectoryName” associated with feature ‘GUID1’ in the solution is used by feature ‘GUID2’ installed in the farm. All features must have unique directories to avoid overwriting...