Skip to main content

Posts

Showing posts with the label SharePoint 2019

Issue while embedding content using iframe in SharePoint

In this blog post, we'll explore the necessary settings required prior to embedding code within a SharePoint page. Failing to configure these settings correctly may result in issues when utilizing the embed code.  The HTML field security setting is useful to allow or restrict the ability to embed content on SharePoint pages if you use external images in JSON formatting.  Common issue like: External Icon/Image URLs not working in JSON Formatting. Embedding content from this website isn't allowed. "Embedding content from this website isn't allowed, but your admin can change this setting. They will need to add 'www.techrobbers.com' to the list of sites that are allowed." This issue came when you try to add embed code from the site which is not added into the "Allow iframes from this domain". To embed the content from the site you need to add the site in the  HTML Field Security . To resolve this issue, follow steps mentioned below: 1. Click ...

Utilize the out of the box web parts and add social media feeds on modern pages SharePoint online

In this article, we are going to learn, how to add social media feeds. There are several web parts available out of the box to add social media on the modern page. Those web parts are quite useful in building the intranet. Add social media feeds to the SharePoint page. To add twitter feeds to on the page, follow the steps mentioned below: 1. Edit the page and click on the add icon for adding the web part. 2. Search for the twitter web part and add it. 3.  Now go to the web part properties and add the twitter handle you want to add.  You can also change the theme color and the numbers tweets to show on-page. 4. Once you done all the settings. Republish the page. You can embed Facebook public feeds on your site by following these steps:  First, we need to get embed code from  Facebook page plugin .  Now paste the Facebook page URL and set the height - width.          3.  Now click on the get code. Select IFrame and copy the code. ...

Create document library using SPFx solution

 In this article, we are going to learn how to create(provision) document library programmatically. We can create a list or document libraries programmatically with the SPFx solution.  In my previous article, I wrote about the  Provisioning of list with SPFx web part solution . SPFx provides flexibility to provision SharePoint assets with the solution. In this article, we are going to provision a document library. Create a client-side web part solution  Follow the steps for creating a client-side web part solution, run the commands using command prompt. Create a directory md test-webpart Move to the directory cd test-webpart   Run yo @microsoft/sharepoint command to create a client-side web part. Once you run the command mentioned above, you need to put some information related to the web part solution   What is your solution name? Give the name to your solution.  Which baseline packages do you want to target for your component(s)?  On w...

How to create custom permission level in SharePoint online

In this article we are going to discuss custom permissions in SharePoint online and "How to create custom permission level in SharePoint online".  We will also explore usage of the custom permission and scenarios where custom permissions are useful. SharePoint have some default permission levels like full control, design, edit, contribute, view, read and view only. Every permission level defined the accessibility of user on the items. Permission level plays important role in SharePoint security. For an example: In some scenarios you need to assign a permission to user for add and edit the item but you do not want to allow user to delete the item. For such types of scenarios there is no default permission level is available, to fulfill your requirement you need to create custom permission level. How to create custom permission level in SharePoint : 1 Navigate to S ite settings.  2. Click on  Site permissions  and you will redirect to the permission page. 3. Click on t...

How to create list from template in sharepoint

In this article, we are going to learn how to create a list from list template or using(.stp) file or we can say create list from existing list. Once you save the list as a template, It appears into List template option under the web designer gallery on site setting page. Steps to create list from list template: 1 Move to the site setting section where you have saved the list template. 2. When you click on the List templates, you will redirect to the List template gallery and from the list template gallery. 3. Now click on the File in ribbon and click on the upload document. 4. Browse the location where your list template is downloaded. I am uploading the template of an address list. 5.  After browsing the template, now you can give the name what you want to give to the list template and click on save. 6. Now the list template file appears into the list template gallery. Now click on the gear  icon and click on the Add an app. 7. On clicking add...

Save site as template option in sharepoint online

In this article, we are going to learn about "save site as template option missing in sharepoint". When  you want  to replicate a site that you have already created and to do this you want to save site as template. To save site as template,  you go  on  Site setting   and then   move to  Site  action,   but you did not  find  the option “ Save site as template ” option.    In the modern sharepoint "save site as template" option is not enable by default. There are several option available to enable "save site as template".   Optione 1: Custom script is not allowed  on tenant  : On the new office 365 tenants or we say in Modern SharePoint experience by default the custom scripting is not allowed  on the tenant. If custom script is not allowed on your tenant some features will not work  o n your tenants. In common terms you may not able to  save site as template , options to creat...