I am trying to create a unique title in sitefinity, the current title is something like this: "Chicken Sandwich". This is the code that is creating the title:
Page.Title = (this._Product.PageTitle != "" ) ? this._Product.PageTitle : this._Product.Name;
I want to title to be something like this "Nutritional Information for Chicken Sandwich".
In Sitefinity 4/5 you kind of have 2 different titles. The first one is the 'name' of the page, the second is the Title for search engines. The name is seen throughout the backend of Sitefinity and is used in the navigation widgets. See screenshot here
You can retrieve both by the following statements:
and
Hope it helps!
Jochem