Is it possible to add site pages in the navigation menu of the search results in SharePoint?
Per my knowledge, customize SharePoint modern search result page is not available.
Related
Everyone,
Greetings..!!
I have created Modern Team Site in SharePoint Online than, I have created 1 Test Page in Pages library.
When I opened Site Contents Search Box was shown in the SharePoint suite-bar. Please refer below image.[1]: https://i.stack.imgur.com/qnhWW.png
When I opened Test Page from Pages library. Search Box was missing in the SharePoint suite-bar. Please refer below image.
[2]: https://i.stack.imgur.com/EdvLR.png
Is there any way to unhide the Search Box on SharePoint Suite Bar while I am open page from pages library?
Please let me know your thoughts on the same.
Thanks in Advance.
It looks like you created modern team site but the page is in classic mode (may be it is a wiki page).
In classic sharepoint site search box is at right. In modern pages and sites, it is on top.
Here i have a issue with SharePoint Designer 2013, an Modern site page was build on SharePoint Online. But i need to customize the modern page and adding url to quick links.
Though modern page doesn't support CEWP or SEWP it's hard to custom the page. But what i am looking is to edit the site pages from SPD 2013 and if i edit the planner.aspx will changes save, unfortune i have Url to navigate the user from the one page to other url(https://...Planner.aspx).
What i want is when user clicks on above link, it should open in new tab and i have to align the page with Css branding. i am adding something like this to open in new tab using SPD href="/abc/xyz/3/SitePages/Planner.aspx?web=1 target="_blank" but no luck at the end.
Looking for an solution, Thanks in advance !
As far as i understand, using SharePoint Designer is not supported for modying the SharePoint modern experience.
You should be using the SharePoint Framework to modify your pages, you can see the full list of supported modifications here:
https://learn.microsoft.com/en-us/sharepoint/dev/solution-guidance/modern-experience-customizations
However, if you are used to using CEWP and SEWP, you can deploy an app which replicates the functionality in the modern pages
https://github.com/SharePoint/sp-dev-fx-webparts/tree/master/samples/react-script-editor
Atlthough this is probably not supported either, it should allow you to make the changes you want.
I want to show top 3 most visited pages in my home page of sharepoint site. I need to find out the Title of the Top 3 pages and display them in a link. I found out the way. But it display all the pages like allpages.aspx, settings.aspx... I need only top 3 most user created pages. So far I have been unable to figure out the best way to do this. Any suggestions to get me started would be appreciated.
Regards,
Raji...
You can create your custom Web Analytics Web Part derived from OOTB WAWP. Check some solution here: http://farhanfaiz.wordpress.com/2011/06/21/sharepoint-2010-display-titles-instead-of-url%E2%80%99s-in-whatspopularwebpart/
In your custom code you can make filtration functionality and skip undesired pages.
A client has created a site collection with many (hundreds) of subsites. The logo in on each subsite takes them to the subsites welcome page but what the client wants is to link to the very top site welcome page in the site collection. How is this done in the easiest way (instead of having to change manually on each site)? Powershell?
Thanks in advance.
You can change the link in the masterpage to accomplish this.
Open the masterpage in e.g. SharePoint Designer in Split mode. Select the logo and adjust the control SPLinkButton. The NavigateUrl value is default "~site". Change this to "~sitecollection". Save, check in and approve the masterpage.
Can use my custom page to add/Edit item from sharepoint list?
if yes how? Do i need to do any config changes?
Sure you can! Check Create a custom list article form from Microsoft site. You will use SharePoint Designer 2007 for all the customizations. It also allows you to convert every form to HTML/XSLT and to customize it even further.
In SharePoint Designer, create a new ASPX Page then go to Insert => SharePoint Controls => List Form or Form Web Part and play around to see if it fits your needs.