SharePoint 2013 Upgraded Sites from 2010 Missing Title on Home Page

Hi All,
I have upgraded site collection from 2010 to 2013 but I can't see site tiles on site Home page. We are using our template to create default web part page. I can see titles when I do Site Actions->Site settings->Look and Feel->Title but
not on default page of site.
Need help to solve the issue. Thanks in advance.
Jayprakash Dhore

Hi,
The following steps for your reference:
1.Open the problem site in SharePoint Designer 2013 (SPD)
2.Choose All Files option on the left hand quick launch
3.Click on default.aspx
4.On the Home tab, switch to Advanced Mode.
5.Search for "PlaceHolderPageImage" … it’s near the top
6.Paste the following on the next line (or after the closing </asp:Content> tag)
<asp:Content ContentPlaceHolderId="PlaceHolderPageTitleInTitleArea" runat="server">
<label class="">
<SharePoint:ProjectProperty Property="Title" runat="server"/></label>
</asp:Content>
7. Save and refresh your page
Or check the blog below:
SharePoint 2013 Upgraded Sites Missing Title on Home Page
http://sharepointcherie.blogspot.com/2013/10/sharepoint-2013-upgraded-sites-missing.html
Best Regards
TechNet Community Support
Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
[email protected]

Similar Messages

  • List all users with full control on a SharePoint 2013 Sub site from SharePoint Object Model in C#

    If I have a sub site URL and a user with Site Admin, can I list all users in that sub site that have Full Control at that level?
    Any C# code sample?

    Still you can do that, just pass the subsites to your code and from their you can find the users dynamically.
    You could also use SPWeb.Users property to get users assigned to a subsite
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spweb.users(v=office.15).aspx
    alternatively you can also use SPWeb.SiteUsers to get all users
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spweb.siteusers(v=office.15).aspx
    other APIs of help-
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spweb.associatedmembergroup(v=office.15).aspx
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spweb.associatedownergroup(v=office.15).aspx
    http://sharepoint.stackexchange.com/questions/101671/object-model-list-all-users-with-full-control-on-a-sub-site-in-sharepoint-2013
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if my reply helps you

  • SharePoint 2013 My Site About Me section doesn't save.

    I'm having a problem with the "About me" field in SharePoint 2013 My Sites.
    I can enter a value and "Save all and close" and everything appears just fine.  However, if I go to edit my profile again the About me section appears blank on the edit screen.  So, if I make a change to any other profile field and save,
    the information I entered initially in About me disappears. 
    I check in both Central Administration and directly in the user profile database and Central Admin recognizes that one profile is using that property (we're in pre-production) and the text I entered appears in Property ID 16 in the UserProfileValue
    table... but as soon as I edit and re-save my profile the value disappears on the back end.  It appears the data is submitted to the profile database and displayed on the profile but it is not populated back to the edit screen form and
    is therefore overwritten with NULL values upon save.
    Is anyone else seeing this?  Any ideas?
    Kevin

    Hi ALL
    I am facing issues in setting up Mysites
    I have checked Managed Path, Self-Service Site Creation or Activity Feed Job and they are properly configured.
    Can anybody help me on this please  .
    Iam getting this error
    MBUtilities.UserProfileFeedIdentifier Exception:[System.IO.FileNotFoundException: http://psh311:5555/Lists/PublishedFeed
    ---> System.IO.FileNotFoundException: The system cannot find the file specified. (Exception from HRESULT: 0x80070002)    
     at Microsoft.SharePoint.Library.SPRequestInternalClass.GetMetadataForUrl(String bstrUrl, Int32 METADATAFLAGS, Guid&
    pgListId, Int32& plItemId, Int32& plType, Object& pvarFileOrFolder)    
     at Microsoft.SharePoint.Library.SPRequest.GetMetadataForUrl(String bstrUrl, Int32 METADATAFLAGS, Guid& pgListId,
    Int32& plItemId, Int32& plType, Object& pvarFileOrFolder)    
     at Microsoft.SharePoint.SPWeb.GetList(String strUrl)    
     at Microsoft.Office.Server.Microfeed.MBUtilities.GetPublishedFeedListPrivate(SPWeb web, String relativeUrl)  
     at Microsoft.Office.Server.Microfeed.MBUtilities.GetPublishedFeedListPrivate(SPWeb web, String relativeUrl)  
     at Microsoft.Office.Server.Microfeed.MBUtilities.UserProfileFeedIdentifier(SPWeb web, Guid partitionID)]
    Thanks
     Hari

  • [Forum FAQ] SharePoint 2013: Extracting values from a multi-value enabled lookup column and merge values to a multi-value enabled column

    For some business requirements, users want to extract values from a multi-value enabled lookup column
    and add items to another list based on each separate value. In contrast, others want to find duplicate values in the list and merge associated values to a multi-value enabled column and then
    add items to another list based on the merged value. All of these can be achieved using SharePoint Designer 2013 Workflow.
    How to extract values from a multi-value enabled lookup column and add items to another list based
    on each separate value using SharePoint Designer 2013.
    Important actions: Loop Shape; Utility Actions
    Three scenarios
    Things to note
    Steps to create Workflow
    How to merge values to a multi-value enabled column and add item to another list based on the
    merged value using SharePoint Designer 2013.
    Important actions: Call HTTP Web Service; Build Dictionary
    Things to note
    Steps to create Workflow
    How to
    extract values from a multi-value enabled lookup column and
    add items to another list based on each separate value using SharePoint Designer 2013.
    For example, they have three lists as below. They want to
    extract values from the Destinations column
    in Lookup2 and add items to Lookup3 based on each country and set Title to current item: ID.
    Lookup1:
    Title (Single line of text)
    Lookup2:
    Title (Single line of text), Destinations (Lookup; Get information from: Lookup1 in Title column).\
    Lookup3:
    Title (Single line of text), Country (Single line of text).
    Important action
    1. Loop Shape: SharePoint Designer 2013 support two types of loops: loop n times and loop with condition.
    Loops must also conform to the following rules:
    Loops must be within a stage, and stages cannot be within a loop.
    Steps may be within a loop.
    Loops may have only one entry and one exit point.
    2. Utility Actions: It contains many actions, such as ‘Extract Substring from Index of String’ and ‘Find substring in String’.
    Three scenarios
    We need to loop through the string returned from the look up column and look for commas. There are three
    scenarios:
    1.  No comma but string is non-empty so there is only one country.
    2.  At least one comma so there is at least two or more countries to loop.
    3.  In the loop we have consumed all the commas so we have found the last country. 
    Things to note
    There are two things to note:
    1. "Find string in string (output to Variable:index)"  will return -1 if doesn't find
    the searched for string.
    2. In the opening statement "Set Variable: Countries to Current Item:Destinations" set the return
    field as  "Lookup Values, Comma Delimited".
    Steps to create Workflow
    Create a custom list named Lookup1.
    Create a custom list named Lookup2, add column: Destinations (Lookup; Get information from: Lookup1 in Title column).
    Create a custom list named Lookup3, add column: Country (Single line of text).
    Create a workflow associated to Lookup2.
    Add conditions and actions:
    Start the workflow automatically when an item is created.
    Add item to Lookup2, then workflow will be started automatically and create multiple items to lookup3.
    See the below in workflow History List:
    How to merge values to a multi-value enabled column and add item to another list based on the
    merged value using SharePoint Designer 2013
    For example, they have three lists as below. They want to find duplicate values in the Title column in
    Lookup3 and merge country column to a multi-value enabled column and then add item to lookup2 and set the Title to Current Item: Title.
    Lookup1:
    Title (Single line of text)
    Lookup3:
    Title (Single line of text), Country (Single line of text).
    Lookup2:
    Title (Single line of text), Test (Single line of text).
    Important actions
    "Call HTTP Web Service"
    action: In SharePoint 2013 workflows, we can call a web service using a new action introduced in SharePoint 2013 named Call HTTP Web Service. This action
    is flexible and allows you to make simple calls to a web service easily, or, if needed, you can create more complex calls using HTTP verbs as well as allowing you to add HTTP headers.
    “Build Dictionary"
    action:
    The Dictionary variable type is a new variable type in the SharePoint 2013 Workflow.
    The following are the three actions specifically designed for the Dictionary variable type: Build Dictionary, Count Items in a Dictionary and Get an Item from a Dictionary.
    The "Call HTTP Web Service" workflow action would be useless without the new "Dictionary" workflow action.
    Things to note
    The
    HTTP URI is set to https://sitename/_api/web/lists/GetByTitle('listname')/items?$orderby=Id%20desc and the HTTP method is set to “GET”. Then the list will be sort by Id in descending order.
    Use Get
    d/results(0)/Id form
    Variable: ResponseContent (Output to
    Variable: maxid) to get the Max ID.
    Use Set
    Variable: minid to Current List:ID to get the Min ID.
    Use Copy from
    Variable: destianation , starting at
    1 (Output to
    Variable: destianation) to remove the space.
    Steps to create Workflow
    Create a custom list named Lookup1.
    Create a custom list named Lookup2, add column: Test (Single line of text).
    Create a custom list named Lookup3, add column: Country (Single line of text).
    Create a workflow associated to Lookup3.
    Add a new "Build Dictionary" action
    to define the http request header:
    Add a Call HTTP Web Serviceaction, click on
    this and paste your http request.
    To associate the
    RequestHeader variable, select the Call action property,
    set the
    RequestHeaders property to
    RequestHeader:
    In the Call action, click on
    response and associate the response to a new
    variable: ResponseContent (of type Dictionary).
    After the Call action add Get item from Dictionary action to get the Max ID.
    Add Set Workflow Variable action to get the Min ID.
    Add Loop Shape (Loop with Condition) to get all the duplicate titles and integrate them to a string.
    Create item in Lookup2.
    The final Stage should look like this:
    Start the workflow automatically when an item is created.
    Add item to Lookup3, then workflow will be started automatically and create item to lookup2.
    See the below in workflow History List:
    References
    SharePoint Designer 2013 - Extracting values from a multi-value enabled lookup column into a dictionary as separate items:
    http://social.technet.microsoft.com/Forums/en-US/97d34468-1b53-4741-88b0-958472f8ca9a/sharepoint-designer-2013-extracting-values-from-a-multivalue-enabled-lookup-column-into-a
    Workflow actions quick reference (SharePoint 2013 Workflow platform):
    http://msdn.microsoft.com/en-us/library/jj164026.aspx
    Understanding Dictionary actions in SharePoint Designer 2013:
    http://msdn.microsoft.com/en-us/library/office/jj554504.aspx
    Working with Web Services in SharePoint 2013 Workflows using SharePoint Designer 2013:
    http://msdn.microsoft.com/en-us/library/office/dn567558.aspx
    Calling the SharePoint 2013 Rest API from a SharePoint Designer Workflow:
    http://sergeluca.wordpress.com/2013/04/09/calling-the-sharepoint-2013-rest-api-from-a-sharepoint-designer-workflow/

    GREAT info, but it may be helpful to note that when replacing a portion of the variable "Countries" with a whitespace character, you may cause the workflow to fail in a few specific cases (certain lookup fields will not accept this and will automatically
    cancel).  I only found this out when recreating your workflow on a similar, but much more complex list set.  
    To resolve this issue, I used another utility action (Extract Substring from Index of List) to clear out the whitespace.  I configured it as "Copy from
    Variable: Countries, starting at
    1 (Output to Variable: Countries), which takes care of this issue in those few cases.
    Otherwise, WOW!  AWESOME JOB!  Thanks!  :)

  • Browse button not working in Windows Phone while tyring to upload an image to Pictures library in Sharepoint 2013 online site .

    Hi,
    I am trying to upload an image to SharePoint 2013 online site's Pictures Library from the Windows phone. When I click on  Browse button, nothing happens. Although the same browse button in working in the chrome and allowing to select an image from the
    phone library.
    Please let me know if this is the known issue or any work around is available to overcome this.
    Regards,
    Saurabh M

    Hi,
    Although the mobile version of Internet Explorer is supported by SharePoint 2013, however, for Office 365 SharePoint Online 2013 which keeps updating all the times, there may
    be some compatibility issues during the process.
    As this issue is more relate to SharePoint Online, it would be more appropriate to open a thread in Office 365 forum, you will get more help and confirmed answers from there:
    http://community.office365.com/en-us/forums/default.aspx
    Thanks for your understanding.    
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • Delete everything in Sharepoint 2013 and start from a begining

    How do you delete all the settings, databases in Sharepoint 2013 and start from a begining.
    We have some problems that PictureURL is wrong and some other thing ain't working right. Because Sharepoint 2013 is in our test environment we would like to delete all settings, databases including PictureURL info, which I don't know which SQL database holds
    that information?
    bostjanc

    The pictureURL parameter is either going to be in the specific site collection in the User Information List, or it is going to be in the User Profile Synchronization Service Application, which is what syncs over to the User Information List. You will need
    to identify exactly what you are trying to clear out. If you are not using User Profile Synchronization in your test environment then the following will help you find and delete the appropriate Site Collection or content database.
    Any content is going to be Site Collection specific, so if you are setting the pictureURL for a user in http://portal.domain.com/sites/somesitecollection then that Site Collection will be in a specific database which may also contain other Site Collections.
    To find out which database a Site Collection is in go to Central Administration -> Application Management -> Site Collections -> View All Site Collections. Here you can find the Site Collection you are browsing to. When you select it you will see
    what content database it is in. You can also just delete the Site Collection here without the need to delete the entire content database. Instead of clicking View All Site Collections in the steps above click Delete a Site Collection. That is probably the
    better route to go.
    If you are using the User Profile Synchronization and this is where the picture URL is set then you will want to go to Central Administration -> Application Management -> Service Applications -> Manage Service Applications -> Click your User
    Profile Service App and then view the user profiles. Find the user you want to remove the pictureURL for and edit that user profile to remove the picture.
    Hope that helps!
    -Corey

  • Display count for each category in sharePoint 2013 blog site

    Hi,
    I have added category list in the left side as web part in SharePoint 2013 blog site.
    Here i want to show the count for each category. And on clicking on the category, it should show the blog posts related to that category.
    Is there any way to do this.
    Please help.
    Thank you.

    Hi Aditi,
    To show item counts on a list, you might need to query the list by title in the navigation menu and retrieve item count in the list, then use CSS to add the number to navigation menu. You need to use Client Object Model and JQuery.
    Here are similar issues:
    http://sharepoint.stackexchange.com/questions/5477/getting-a-count-of-list-items-in-a-list-via-ecmascript
    http://sharepoint.stackexchange.com/questions/18050/how-do-i-get-the-number-of-items-in-a-list
    Regards,
    Rebecca Tu
    TechNet Community Support

  • SharePoint 2013 Blog Site or Discussion LIst - Comment on a Comment

    Hi,
    Quick question.  Is anyone aware of a plug-in or feature or new blog add-in for SP 2013 that allows "comments on comments".   From what I can tell in the blog site and discussion list, you can only comment on the original comment. 
    You cannot comment on someone else's comment as in a tiered fashion. 
    Any ideas?
    Thanks!
    Thanks! Patti N.

    Hi,
    According to your post, my understanding is that you want to be able to comment on someone else’s comments displayed in a hierarchical structure.
    In SharePoint 2013, it’s by default that the Discussion Board list’s replies are in the “Flat” view, and it won’t display the replies in a hierarchical structure.
    However, the Discussion Board list have another default view is the “Threaded” view, and it can display replies in a hierarchical structure.
    Therefore, I recommend that you can directly modify the default view of the Discussion Board list’s replies to the “Threaded” view to achieve your requirement.
    For SharePoint 2013 Blog site, as a workaround, I suggest that you also can create a Discussion Board list into it to implement this function.
    Best Regards,
    Yumi Fu

  • Enable reporting of offensive content not working in sharepoint 2013 community site

    i am trying to enable "Report to moderator option" in community site but when i checked option "Enable reporting of offensive content" in a community site settings and clicked Ok. I am getting an error "The file is not checked out.You
    must first check out this document before making changes."
    i am not sure why i am getting this error, the same thing works fine in other community site's i have created.
    This community is a backup restore of another community site.
    Is there any other way by which i can enable 'reporting of offensive content'.
    Any pointer's to solve this will be helpful.

    You just need to 
    Enable the Reporting of Offensive Content feature
     Note    You must be a member of the Owners group to enable this feature.
    On the Community tools web part on your community home page, click
    Community settings.
    Select the Enable reporting of offensive content check box.
    Click OK.
    http://office.microsoft.com/en-in/sharepoint-server-help/create-a-community-HA102891678.aspx
    http://sharepointadam.com/2012/09/15/enable-report-to-moderator-in-sharepoint-2013-community-sites/
    If you facing some issue please send ULS log details.
    If this helped you resolve your issue, please mark it Answered

  • Controls in ITEM and LIST tabs of Ribbon disabled always in Punishing SharePoint 2013 site if i add list to home page as List View Webpart

    Hi,
    Below is the scenario,
    If i created any custom list and navigating to the list (AllItems.aspx) and on selecting the item, i can see controls in ITEM and LIST tabs of Ribbon are enabled in SharePoint 2013 publishing site.
    If i add the same list in the home page (add web part --> select list view webpart) in the publishing site, on selecting of item, all controls in ITEM and LIST tabs of Ribbon are disabled always.
    Please help me to fix this issue ASAP.
    Regards,
    Krishna

    Hi,
    Thanks for your reply.
    Ribbon controls (only ITEM and LIST tab) still in disabled mode even if i selected the item in the list view webpart.
    Also, i have noticed the below things,
    when i create a published site (default page : default.aspx) and add the list view webpart in the default page, the controls are in disabled mode on selecting item in list view webpart.
    when i create a team site (default page : home.aspx) and add the list view webpart in the default page, the controls are in enable mode on selecting item in list view webpart.
    Please help me on this.
    Regards,
    Krishna

  • Configure sharepoint 2013 with Microsoft exchange 2010

    Hi,
    I am want to configure SharePoint 2013 with Microsoft exchange 2010.
    Please let me how can I integrate these server to Send/ Receive domain E-mails.
    Thanks,   
    C Mahone

    For email integration there really isn't anything special about Exchange 2010 vs. any other mail server.  Check the links here on configuring Incoming and Outgoing mail in SharePoint:
    http://technet.microsoft.com/en-us/library/ee956941(v=office.15).aspx
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • SharePoint 2013 Community Site Issue : Discussion Post auto reply

    Hi,
    We have SharePoint 2013 Community Site which is used by team for disccusions. Recently we have faced a critical issue, the discussion board all posts have been auto replied and the auto replies contains previous commments of users.
    Kindly suggest since we are unable to track the cause of the issue.
    Regards,

    Is there any customization done in that community site? Check the log files for any more information at that specific time.
    --Cheers

  • How can I move apps from one sheet of the home page to another?

    . On my iPhone 5c I cannot rearrange the icons from one part of the home page to another. Suggestions?

    Define "cannot rearrage."  Exactly what did you do and exactly what happened? 
    Did you press on the icons until they wiggle, slide them to the page you want and then press the home button?

  • Why does my IPAD 1, kick me out of a web page/site and return me to my home page?

    Why does my IPAD 1, kick me out of a web page/site and return me to my home page?

    Probably a glitch in Safari.
    Quit Safari - double tap the Home button to reveal the multi-tasking window at the bottom. Swipe sideqays until you see the Safari icon. Tpa-and-hold until the red circle/hwite bar appears, then tap that to close Safari. You might do that with all the icons to be sure.
    Tap the Home button to close multi-tasking.
    Restart the device (hold Home and Sleep for around 10 seconds untl the Apple logo appears).
    Fingers crosed, that'll fix it

  • Issue in Custom Blog site definition based on SharePoint 2010 blog site definition after migrating the sites to SharePoint 2013 and site collection upgrade

    I have created a custom blog site definition using SharePoint 2010 blog site definition with Configuration ID 31 in onet.xml (new value). This was working fine for SharePoint 2010.
    We created new SharePoint 2013 farm and deployed the all Custom solutions in
    14/15 folders. After migrating the sites to SharePoint 2013 using Content DB approach, site created previously using my custom definition are working fine.
    But after running site collection upgrade these sites stop working. When I post a comment then comments not getting listed on post detail page. However comments are getting added to Comments List but
    PostTitle column  of Comment is not getting populated.
    Also, when we create a new site in SharePoint 2013 using my custom blog template then that is also not getting provisioned.  default.aspx and look-up between post and comment list are not working.
    If any one has faced such issue then please share your findings and any solution to fix this.
    Thanks in Advance :)

    Hi ,
    According to your description, my understanding is that the blog based on custom blog site definition didn’t work correctly after migrating custom blog site definition to SharePoint 2013.
    If you customized the Onet.xml file in a previous version's site definition, you should modify some sections in the file to work in the current version, like  <BaseTypes> and  <ListTemplate>  etc. More information, please refer
    to the link below:
    http://msdn.microsoft.com/en-us/library/office/aa543837(v=office.14).aspx
    For that the PostTitle column  of Comment is not getting populated, please try to modify the view, then compare the result.
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

Maybe you are looking for

  • How can I transfer my old account balance to my new Apple ID?

       The new Apple ID was necessary because Itunes checks email addresses, and the address no longer exists, so it would not let me sign in. Now that I have a new Apple ID, it wont recognize my credit balance. Lest anyone tell me to email Apple, I cant

  • Images from Event gone!

    I was looking at old photos and I see that two events are gone. The thumbnail is there, the meta data is there, but the large image is not! It appears that my camera is overwriting images with hte same name? I've tried rebuilding the library... i've

  • Linksys Router

    My Linksys Cable/DSL Router doesn't work. In the middle of the wizard setup an error appears saying the router can't connect to the internet. I can access the internet without the router.

  • Query the database;

    Hello; My application is running the following query: SELECT NULL AS pktable_cat,       p.owner as pktable_schem,       p.table_name as pktable_name,       pc.column_name as pkcolumn_name,       NULL as fktable_cat,       f.owner as fktable_schem,   

  • How can i make iphone mobile website,  database in Sql Server 2005 ?

    how can i make iphone mobile website,  database in Sql Server 2005 ? Thanks & Regards Jamshed Ali Email id: [email protected]