Hello All,You will be shocked to see the error The user or administrator has not consented to use the application with ID named 'PnP Management Shell' after using Connect-PnPOnline cmdlet for SharePoint Online.There is a temporary solution. Solution: Downgrade your PnP module to version 3.20.2004.0Here's what happened to me.I got new laptop and setting up my Dev environment. -...
Thursday, December 2, 2021
Tuesday, March 5, 2019
Tuesday, February 5, 2019
BEWARE - SharePoint Online Implicit managed property issue
If you do not want to read the whole story then here is the issue;
Implicit Managed Properties are CASE-SENSITIVE. Make sure you copy and paste the property name in your code. I was using it in Search's REST api and it was not working because I used "deptOWSCHCS" instead of "DeptOWSCHCS" (notice the first letter).
What is Implicit Managed Property?
SharePoint automatically creates a managed property...
Monday, December 17, 2018
SharePoint Online: How to add multiple class names to SPFx web part
If you had override the CSS using Content editor web part on Classic experience then you would have faced big problem in SPFx.
Yes, you cannot override the CSS design because CSS preprocessor adds some random characters at the end dynamically. So you cannot override.
You might think why do I need...
Wednesday, August 22, 2018
SharePoint Online: Content search web part is not displaying all refinable values
Have you ever be in this situation where you do not see all refinable values under mapped refinable property in CSWP?
You are not alone. :)
Here's what happened;
Business requirement:
- Want to display particular department items
Solution:
- Use CSWP and configure the refiners section.
Implementation:
-...