castironcook wrote:I'd like to proceed with editing the source for the homepage (Page Title). Can you/someone provide instructions?
Thank you for any help as I need to get this fixed as soon as possible.
Hi castinroncook,
If you don't want the default title set in the Administration then you have 2 options.
Either simply remove the default title from the Administration or to make some modifications to the razor code, which will prevent them to be added.
Both options are basically the same but the first is much easier.
If you opt for the second option then you need to modify this file:
Views\Shared\_Root.Head.cshtmland change this line:
<title>@Html.NopTitle(true)</title>
to
<title>@Html.NopTitle(false)</title>
Then if you specify specific title for you home page you can edit this file:
Themes\Fashion\Views\Home\Index.cshtmlby adding this line of code:
Html.AddTitleParts("You home page title here");
Hope this helps!
Best Regards,
Nop-Templates Support Team