I am trying to create a people directory in sharepoint 2013.
So i am trying to add a page of page layout type "(Welcome page)Search People" (reference : http://www.sharepointconfig.com/2013/05/how-to-create-a-simple-sharepoint-2013-people-directory/)
But the item "(Welcome page) Search people" is missing in my page layouts . Also, site pages document library doesnt have a template called page while trying to add new document.
I have configured user profile service app but stil couldnt find the template
Any help on this is appreciated
Regards
Vishnu
Related
I have updated an existing user DNN page with some text. I can preview this page using the Page Management page. Since I didn't create this page I don't know which other pages/menus contain a link to this page. How can I find out which pages/menus link to this page?
Thanks
Who or what created the page?
What is the URL that you visit to edit the page? (Edit the URL here to use a phony name.)
Getting the exact number of links to a page is almost impossible without the use of a site crawler, as the page could be referenced in many ways.
Via HTML Content on a Page - This would be in the HTMLText table of the database
Via a Page-Link Menu Item - This would be in the Tabs table of the database
Via a URL-Link Menu Item - This would be in the Tabs table as well, just tied by the URL rather than the TabId
There is no report/link in the DNN Platform to list all usages.
I have a Sharepoint site that currently inherits everything from the v4.master page.
This site in an internal wiki page for company documentation. Each page within the wiki can have 1 or more pages linked inside of it. For instance:
Wiki Main
└Finance
└AP Reports
└AR Reports
└Human Resources
└Payroll
└Benefits
We have been embedding new pages using this code [[FinancePage|Finance Documentation Page]] on each 'parent' page.
The issue I'm having is that the breadcrumbs do not seem to follow the leveling when users click links.
The breadcrumbs will show the following: Wiki Main > Finance
Then when the click AP Reports it will show this: Wiki Main > AP Reports
What I'd like it to show is this: Wiki main > Finance > AP Reports
I'll be the first to admit I have zero experience with Sharepoint and when googling there are quite a few hits that seem to go into making my own DLL or replacing .sitemap*.xml file but Im not sure if that is the correct solution to what Im trying to do.
Is there a way to get the breadcrumb leveling to work correctly via a Site Setting?
I have sandbox solution which has 2 features (both are sitecollection level features)
I am activating both feature using same USER.
feature 1 : that uploads .stp files to _catalogs/lt folder via module file
feature 2 (is dependent on feature 1) : it will get all .stp file via .GetCustomListTemplates(spweb) method from _catalogs/lt, but there are no files coming in
here is my code
using (SPSite mySite = properties.Feature.Parent as SPSite)
{
using (SPWeb spWeb = mySite.OpenWeb())
{
spWeb.AllowUnsafeUpdates = true;
SPListTemplateCollection listTemplates = mySite.GetCustomListTemplates(spWeb);
}
}
listTemplates has no .stp files.it is coming out empty.
pls help me ...
Does your list template derive from one of the default list templates like "Discussion Board"? I noticed that when I tried to do the following I encountered the same problem as you:
Save a SharePoint 2007 "Discussion Board" list as a list template
Use the method in this blog to convert the template to SharePoint 2010
Upload the template to my SharePoint 2010 site
I noticed that the default "Discussion Board" list template was not even an option for creating a new list in SharePoint 2010. Therefore I went to the site features and and turned on the "Team Collaboration Lists" just to enable the default "Discussion Board" list template.
After doing that both the default "Discussion Board" list template and my custom "Bulletin Board" template showed up when I went to create a new list. Then I went to my powershell script and noticed that GetCustomListTemplates returned my custom template. I'm assuming that means the C# should work as well.
Here is the list from the old SharePoint 2007 website:
Here is the collaboration feature that enables the "Discussion Board" list template in the new SharePoint 2010 website:
Here is the menu for creating a new list in the new SharePoint 2010 website AFTER enabling the team collaboration lists feature:
As you can see the "BulletinBoard" image is the same as the "Discussion Board" image so SharePoint probably couldn't use the "BulletinBoard" template because the "Discussion Board" template was not yet installed.
If you use the Record Center as the template for your root website in SharePoint 2010, GetCustomListTemplates() will always return 0 (zero).
There is some weird bug that makes this happen.
Here is code that you can try running in the SharePoint PowerShell. The return value for GetCustomListTemplates($web).Count will be zero if you have the root web made from the Record Center template.
$site = get-spsite("http://localhost")
$web = $site.RootWeb
$list = $web.Lists["TestDocLibrary"]
$list.SaveAsTemplate("MyListTemplate.stp", "MyListTemplate", "My List Template", $false)
$site.GetCustomListTemplates($web).Count
More information can be found at the following web pages:
http://social.msdn.microsoft.com/Forums/ar/sharepoint2010general/thread/c5455a27-360a-465c-91d5-f81beeac6789
http://sharepointrecordsmanagement.com/2011/02/
Good luck!
- Jason
I had a look at http://www.westernaustralia.com/au/Pages/Welcome_to_Western_Australia.aspx and I know it's a SharePoint site and I am wondering how it could have been made.
I am mostly interrested in the center column (What's On). Is it an announcement list with thumbnails and Find out more links are pointing to wiki pages? Could it be a custom web part or is it possible to do this sort of thing with SharePoint 2010 out of the box?
Thanks in advance.
You can do this easily with a "What's New" web part. Customize your library view setting and set your webpart to use that view. Add a simple content editor at the bottom of this web part and add those other links like View All etc...
Remember that you can create your own list and make sure to index it so that it can rollback into the What's New webpart.
Looking at the emitted HTML it looks like a custom user control in the page layout to me (hell I could be wrong)
That said though it is possible to do this OOTB and I could build that functionality using the Content Query Web Part and some custom XSL
Is it possible to move the SharePoint 2010 BCS profile page, normally located under:
https://***.orbitone.com:443/__bdc/https___***_orbitone_com/Projects_1.aspx?JOB_ID={0}
To:
https://***.orbitone.com:443/Projects_1.aspx?JOB_ID={0}
Thanks!
It is a work around I guess but works well. I have tried it out.
1.) Create the profile page in the desired location (Web Part page)
2.) Export the web parts(2 web parts) from original profile page and add it to you custom page.
3.) Connect the web parts and test the page whether it is working properly like the OOTB profile page.
4.) Create a new action in the External Content Type and give the above new URL in the below format
https://???.orbitone.com:443/Projects_1.aspx?JOB_ID={0}
5.) Select the other parameters appropriately. Don't forget to give parameter as the identifier(JOB ID). Make sure you select this action as default action.
That's it :)
It should work in the way you expect. Let me know if you face any issues.