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
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""}"
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