Sp-starter-kit: Portal Footer is not showing at all

Created on 9 Nov 2018  路  2Comments  路  Source: pnp/sp-starter-kit

I've installed the .Sppkg file into my tenant and did the configuration for UserProfiles and Custom List But, there is nothing showing up. Am I missing anything

Most helpful comment

Hi Rajesh, did you add the Footer to your site collection?

When going through the provisioning script, it will auto add this to your sites. If you are doing this manually, you'll have to add the the footer to your site and this can be done through PowerShell PnP using Add-PnPCustomAction

All 2 comments

Hi Rajesh, did you add the Footer to your site collection?

When going through the provisioning script, it will auto add this to your sites. If you are doing this manually, you'll have to add the the footer to your site and this can be done through PowerShell PnP using Add-PnPCustomAction

Hi Rajesh , Try to add manually using PNP powershell about this.

Connect-PnPOnline https://yoursite.sharepoint.com/sites/siteportalname
Remove-PnPCustomAction -Identity "PortalFooter"

Add-PnPCustomAction -Name "PortalFooter" -Title "PortalFooter" -ClientSideComponentId b8eb4ec9-934a-4248-a15f-863d27f94f60 -Location "ClientSideExtension.ApplicationCustomizer" -ClientSideComponentProperties "{""linksListTitle"":""PnP-PortalFooter-Links"",""copyright"":""@Copyright Auritas, 2018"",""support"":""[email protected]"",""personalItemsStorageProperty"":""PnP-CollabFooter-MyLinks""}"

Was this page helpful?
0 / 5 - 0 ratings