If you installed a store app in SharePoint which comes with a web part and you can’t seem to find that web part when editing a page, you most likely don’t have custom scripting enabled on your SharePoint site collection. To enable this through PowerShell, use the following script.
Add-PSSnapin Microsoft.SharePoint.PowerShell
$SiteUrl="https://inspyrsolutions.sharepoint.com/"
Connect-SPOService $SiteUrl
Set-SPOSite $SiteUrl -DenyAddAndCustomizePages 0
No comment yet, add your voice below!