Play video in full screen and hide Header menu bar in SharePoint online modern site - sharepoint

I am creating a landing page in SharePoint Online (modern experience site not classic).
I have below mention client's requirement.
Once user hit the SharePoint home page, it should show only the video in full screen and after completion of video the page should redirect to any other website.
Page should have only the video nothing else. Need to the hide the top header bar.
What I've tried so far:
I added the full-width section and linked to the video file. Section taking the full width but video is not coming in full screen. Video aspect size is correct when i am running the video in browser or any video player it is running in full screen.
I added the One-column section and added the video using "File viewer' and "embed' web part and in both cases video is not coming full screen.
Is it feasible to achieve these requirements? I searched in google and seems it is a known limitation and didn't get the solution.

What you are trying to achieve is not possible using SharePoint OOTB functionalities.
Using SharePoint OOTB, you cannot hide Header menu bar in SharePoint online modern experience.
For you requirements, you need custom solution using SPFx:
Create a SPFx web part to show the video on page
Hide SharePoint HTML elements (navigation, header, etc.) using custom CSS
Add a button to close the video & redirect to another page.
Note: DOM manipulation & CSS customizations are not recommended by Microsoft and some of your customization may break if Microsoft changes HTML element id/classes in new release updates.

Related

Display Most Viewed Page in SharePoint on Home Page

I am a beginner on SharePoint. I am trying to fetch the most viewed pages and display them on the front page in one section. Please help me how can I show Most Viewed Pages on homepage of my SharePoint site.
We could use Highlighted content web part to display most viewed page on home page:
Page analytics data is not accessible for filtering in a web part. You would need to code a custom web part for that.
It would also help immensely if you could detail what version of SharePoint you are working with, because the availability of tools varies wildly between online and on premises versions.

Get all URL list while visiting web pages

Is there any tool of webservice to get url listed in Excel while visiting webpages?
For example if I go to any website which contains Page 1-2-3-4-Next Now if I click on any page then the URL of that particular page will be listed or in table.
I want to crawl some data from a website so I need the URL list.
you can make use of selenium IDE plugin in firefox, for recording your required actions. Automatic code will be generated based on your selection (java/perl/python/php). you can save the code and modify the code for getting the URL's and proceed as you like. This is the answer for your Question.. Personally i will not recommend this approach you are following
You can do this with Site Visualizer. Create new project, click Start button to crawl a website. All its pages will be listed in the Pages table (at the top of the main window). Click through a page to get all its links to be listed in the Links table (at the bottom of the window):

SharePoint 2013 online customize personimmersive page

I want to customize the SharePoint 2013 online(office 365) "About me" linked page (personimmersive.aspx) to a custom look and feel.
Even clicking on any SPUser name, for ex in a list item modified by is "John Smith" if we click on it goes to about me page.
This page resides under mysite but I cannot see this page is SharePoint 2013 designer to edit, but modifying SharePoint pages in designer is not always the best way.
Can I just create a new page and redirect all Profile page request to that custom page?
IF I create app parts and edit the page I cannot edit the top portion of the page.
redirecting may not be a feasible approach, specially on the online versions
you can try to take advantage of web parts and css to do what you can
The biggest change is that you can’t edit the entire top portion of
the page. These used to be in a web part zone, and you could choose to
add/remove the web parts. Now they are fixed, with no ability to move
them around or change the parts.
We had removed the Activity Feed web part previously because we were
using Yammer newsfeeds and group feeds embedded throughout the site,
and this part always showed “No activities”. Now this is back again,
with no way to remove it, short of editing the page in SharePoint
Designer.
There are still web part zones on the bottom, but really the problem
is no control over the display of most of the top of the page.
http://weshackett.com/2014/04/office-365-new-profile-page/
There is personImmersive.aspx in SharePoint Designer, you should be able to find it in All Files. Just make sure you connect to [your_domain]-my.sharepoint.com instead of [your_domain].sharepoint.com.
you can't customize the page completely.However you can add custom web part and custom css to change the look and feel to a great extent.
#tiago duarte you can still remove the activity web part.This can be done using script editor webpart and hiding the complete block/div.

RSS Viewer web part not selectable in Sharepoint Designer

I want to place the RSS Viewer web part into a page layout I've created.
In the Sharepoint Designer (Sharepoint 2010) using the "Advanced Edit Mode" I tried to add the RSS Viewer web part but I cannot find it in the list. Under "Insert>Web part" I find many other web parts but the one I need is missing, also under "More web parts..." it cannot be found.
The web part is installed (I activated the feature). The web part can manually be added to a page into a web part zone when I don't use the Designer but edit the page directly in the browser but of course this is not what I need as I have to put it in the page layout.
Anyone got an Idea why the web part is not selectable/visible in the list?
As I've learned not all web parts are available in this listing.
The workaround would be to manually add the desired web part to a webpart zone on the page (not in the designer) and then open the page in the designer so that you can copy/paste the web part relevant code to the page layout of your desire.

SharePoint - What Causes a Blank Screen When a Registered User Views a Page?

I have a fairly simple page in WSS3. It's basically a web part page with a custom webpart to display some text and a embedded video from Vimeo, a custom webpart to handle newsletter submissions (a simple form) and a couple of document libraries.
I'm using Forms authentication. My admin user can sign in and browse the rest of the site with no problem, but this one particular page causes the user to be presented with a blank white screen. If I view the source of the page I can see the correct markup and the issue only occurs in IE.
When browsing the site anonymously there is no problem.
Does anyone know what could be causing this?
It sounds like a javascript problem to me - the document library view will render extra menus etc. if you are an authenticated user with some contributing rights to the site. It's probably these that are colliding with something else and causing your issue.
As you'll have no control over the document library viewer web part, I suggest you remove your custom web parts from the page (with the document library viewer on it) and readd them until the page breaks.
I had a similar issue at one point in that we were overriding some functions that were in a SharePoint js library, however as the SharePoint file was registered at the bottom of the master page and ours were in webparts (which loaded first but were subsequently overridden by the OOB file), we had some unexpected behaviour. I fixed it in the end by adding our custom part to the master page after the OOB file was registered.

Resources