Showing posts with label Modern Framework. Show all posts
Showing posts with label Modern Framework. Show all posts

SharePoint Online Hub Site - Overview

Here, I am going to address two queries:
  1. What is SharePoint Hub Site?
  2. Why use SharePoint Hub Site?

What is a SharePoint Hub Site?


SharePoint Hub Site is a connective tissue or conceptual view to connect and organize the site collections based on projects, department, regions, etc. 
Before going deep, let's talk about Hub. The word "hub" illustrates that it is a central part of the wheel that rotates with an axle and helps the spoke to radiate.
Hub Sites are a way to tie all the autonomous site collections together under one navigation umbrella.

SharePoint Hub Site Characteristics

  • Discovers related content, such as news and other site activities
  • Applies common navigation, branding, and site structure across associated sites
  • Searches across all associated sites

Why SharePoint Hub Site? 

It moves away from a hierarchical structure to a flat structure.



Hierarchical structure illustration

This structure is widely accepted among the organizations due to the reasons mentioned below:
  • Permission Inheritance
  • Retention Policy inheritance
  • Shared Term Store
  • Shared Theme and Styling
  • Global Navigation and others





Flat Structure Illustrate

SharePoint Hub site can connect with multiple teams and communication sites (Site Collection). It provides a set of common features:
  • Brings together related teams and communication sites
  • Shared experience for the family of related sites
  • Roll up news, event and site Activity
  • Apply Common navigation and branding
  • Search across the hub and associated sites




SharePoint Hub Sites on Office 365 are all about connecting your various workplaces so you can share, manage, and find the content and apps you need regardless of the device you’re using. The shared theme and logo also creates consistency and unifies all of the different teams and sites you may be active on.




Furthermore, content discovery is amplified through the scoped search feature, as the association allows for the search results to include content from any of the associated sites. This means aggregated news and activities from the various associated sites can bring everything together.

In the next article, you will learn more about -
  1. How to create and associate Hub Sites
  2. Hub Site features
  3. Enterprise Governance for Hub Sites
I hope you have enjoyed and learned something new in this article. Thanks for reading and stay tuned for the next article.

Turn OOTB Comment Section From SharePoint Online Modern Page On or Off

The comments section is an important part of any webpage. It appears in all the modern pages by default. However, we can easily turn this feature on or off using the below simple steps.
Step1
Edit the page.

Step 2
The page owner can see the "Turn on or off" option parallel to the comment section.
Step 3
Select the Turn Off toggle.

Step 4
Publish the page and you will not see any comment section.


Happy Coding.

Remove Header Image Banner From SharePoint Modern Pages

SharePoint Online Modern pages have header image banners in all modern pages;  i.e., Communication or Team Sites. Header image banner needs a background image or text, it takes almost 40% of the page, and we can’t remove this section using User Interface.






If you want to turn this section ON or OFF, it is possible using PnP PowerShell command. Basically, it allows us to change the page layout from Article to Home. The homepage layout doesn’t have a header image banner section.
Remove the Header Image Banner Section
Open SharePoint Online Management Shell and run the below command in sequence.
  1. # Connect to the site  
  2. Connect-PnPOnline https://mittal1201.sharepoint.com/sites/teamsite  
  3. # List all pages, and find the id of the modern page  
  4. Get-PnPListItem -List SitePages  
  5. # Change layout from "Article" to "Home" to remove top banner  
  6. Set-PnPListItem -List SitePages –Identity <id> -Values @{"PageLayoutType"="Home"

Screenshot for your reference.


After executing this command, refresh the page. You will not find the header image banner.


Happy Coding.