Monday, January 4, 2016

How to custom list templates missing in create new list page or app Page

Use PowerShell to enable the 'ParserEnabled' property for the web site

$web = Get-SPWeb <url of web>
$web.ParserEnabled = $true
$web.Update()


#listtemplate missing

No comments:

Post a Comment