Posts

Showing posts from November, 2015

Missing “Apps you can add” with custom master page in SharePoint 2013

Image
After you put a custom master page on SharePoint 2013 in Add app page you don't see "Apps you can add" section? Is this is the case you have change the visibility of some sections on the custom master page. Just change visibility of following content holders to true you will see the section again.  runat="server"/>  runat="server" /> Hope this will help you in someway.

Adding Quick Launch to Page Layout

When we need to add Quick Launch to the page layout we can use following code.     ID="SiteMapDS"     runat="server"     EnableViewState="false"     SiteMapProvider="CurrentNavigation"     StartFromCurrentNode="true"     StartingNodeOffset="0"     ShowStartingNode="false"     TrimNonCurrentTypes="Heading"/>         ID="CurrentNav"     EncodeTitle="false"     runat="server"     EnableViewState="false"     DataSourceID="SiteMapDS"     UseSeparateCSS="false"     UseSimpleRendering="true"     Orientation="Vertical"     StaticDisplayLevels="2"     MaximumDynamicDisplayLevels="0"     CssClass="s4-ql"     SkipLinkText="<%$Resources:cms,masterpages_skiplinktext%>"/> Following links will help you to get some samples how to do this. http://heatherwaterman.com/2014/07/left-navigat