In classic SharePoint sites, it was possible to redirect users to a different site using a few different approaches. But modern SharePoint sites are more restrictive (for good) and offer different features that require different approaches. Fortunately, if you need to redirect users when they try to access the homepage of a specific site, this can be easily achieved using a simple no-code solution.
Tag: Office 356
SPFx and modern SharePoint search page for searching the current location
Modern SharePoint sites on standard release will soon receive an update to add a search box to the top Office 365 bar. This allows you to search by default in the current location, like a site or a document library. You can then configure the site to redirect user's search queries to a custom search page and you can use the amazing PnP Modern Search web parts to create a great search experience. But what if you want to pass the context of the current location to the custom search page and keep searching only on that location by default?
Trigger When a file is created or modified in SharePoint
Power Automate and Azure Logic Apps are great to use as automation tools for processes that include SharePoint data. Unfortunately, they also seem to suffer from some limitations on large lists/libraries which can be quite hard to troubleshoot. On this blog post, I describe the issue that I have recently experienced and how it can be quickly resolved.
Reset API access in SharePoint online for SPFx solutions
If you try to approve API access requests in SharePoint online and get a generic error similar to the below, just stick to the first IT rule: "turn it off and on again"
Convert PnP TaxonomyPicker selection to update value
When using the PnP TaxonomyPicker reusable control to let the user select values for a managed metadata list field in SharePoint, you have to convert that selection into an object that you can then pass to the REST api when updating the field value. The following function does exactly that.
SharePoint SPFx extension – Advanced copy and move
A client recently asked me to create an advanced version of the default "Copy to" and "Cove to" SharePoint capabilities available on every document library. This blog post will cover the main decisions, challenges and tools that I used to achieve this.
Copy & move SharePoint documents/folders using PnPjs
The latest release of #PnPjs contains 4 new methods that allow you to copy and move, #SharePoint files and folders, to a different folder on the same or a different site collection. And they are incredibly fast!
My path to receive the Microsoft MVP award
On the 1st of September, I opened my inbox and found a very pleasant surprise: I had been awarded Microsoft MVP for Office Development! This post covers some of the background, things that (in my opinion) led to the award and also some personal thoughts about the programme. Hope you find the post interesting.
Delete all SharePoint list items with PowerShell
Did you ever wanted to quickly delete all items from a SharePoint list without having to run into complex scenarios?
Get list of recent documents in SharePoint
SharePoint offers an OOB web part that you can use to list the recent documents for the current user. But what if you need the exact same information for a custom SharePoint Framework solution?