Skip to main content
deleted 290 characters in body
Source Link
klewis
  • 1.4k
  • 5
  • 29
  • 59

Try adding the following for a Page title

<SharePoint:FieldValue FieldName="Title" runat="server"/> 

This is based on Robert's answer here - Getting page title of site in Page Layout

updated

ahh...yeah I don't think there is a way to automatically associate a navigational term to a title of any page. That is not OOTB. You could do some custom JavaScript to get the URL name after window() is ready and place that into the title element. Or you can manually set the title of the page in the SEO properties of that specific publishing page from the Ribbon.

Try adding the following for a Page title

<SharePoint:FieldValue FieldName="Title" runat="server"/> 

This is based on Robert's answer here - Getting page title of site in Page Layout

updated

ahh...yeah I don't think there is a way to automatically associate a navigational term to a title of any page. That is not OOTB. You could do some custom JavaScript to get the URL name after window() is ready and place that into the title element. Or you can manually set the title of the page in the SEO properties of that specific publishing page from the Ribbon.

I don't think there is a way to automatically associate a navigational term to a title of any page. That is not OOTB. You could do some custom JavaScript to get the URL name after window() is ready and place that into the title element. Or you can manually set the title of the page in the SEO properties of that specific publishing page from the Ribbon.

added 383 characters in body
Source Link
klewis
  • 1.4k
  • 5
  • 29
  • 59

Try adding the following for a Page title

<SharePoint:FieldValue FieldName="Title" runat="server"/> 

This is based on Robert's answer here - Getting page title of site in Page Layout

updated

ahh...yeah I don't think there is a way to automatically associate a navigational term to a title of any page. That is not OOTB. You could do some custom JavaScript to get the URL name after window() is ready and place that into the title element. Or you can manually set the title of the page in the SEO properties of that specific publishing page from the Ribbon.

Try adding the following for a Page title

<SharePoint:FieldValue FieldName="Title" runat="server"/> 

This is based on Robert's answer here - Getting page title of site in Page Layout

Try adding the following for a Page title

<SharePoint:FieldValue FieldName="Title" runat="server"/> 

This is based on Robert's answer here - Getting page title of site in Page Layout

updated

ahh...yeah I don't think there is a way to automatically associate a navigational term to a title of any page. That is not OOTB. You could do some custom JavaScript to get the URL name after window() is ready and place that into the title element. Or you can manually set the title of the page in the SEO properties of that specific publishing page from the Ribbon.

deleted 123 characters in body
Source Link
klewis
  • 1.4k
  • 5
  • 29
  • 59

You could try toTry adding the following by placing it within your custom page layout...anywhere within the content placeholder PlaceHolderMain.for a Page title

<!--MS:<SharePoint:FieldValue FieldName="Title" runat="server"/>-->  

or try removing the following snippet if its alreadyThis is based on your custom page layout...Robert's answer here - Getting page title of site in Page Layout

<!--SPM:<SharePoint:ProjectProperty Property="Title" runat="server"/>--> 

You could try to the following by placing it within your custom page layout...anywhere within the content placeholder PlaceHolderMain.

<!--MS:<SharePoint:FieldValue FieldName="Title" runat="server"/>-->  

or try removing the following snippet if its already on your custom page layout...

<!--SPM:<SharePoint:ProjectProperty Property="Title" runat="server"/>--> 

Try adding the following for a Page title

<SharePoint:FieldValue FieldName="Title" runat="server"/> 

This is based on Robert's answer here - Getting page title of site in Page Layout

Source Link
klewis
  • 1.4k
  • 5
  • 29
  • 59
Loading