Where to configure HOME page title, keywords, description?

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
11 年 前
What i can fixed if I am a multilanguage ?
11 年 前
Hello...

How can i write with æøå in the front page metadata?

I have tryed with diffrent codes..  

www.qualitec.dk

-Anders
11 年 前
Hello!

I've just used these instructions

a.m. wrote:
Follow the next steps:
1. Open \Views\Home\Index.cshtml file (Nop.Web project)
2. Add the following code after initiating 'Layout' property
Html.AddTitleParts("My home page title");
Html.AddMetaDescriptionParts("My meta description");
Html.AddMetaKeywordParts("My meta keywords");


and get Home page title

'Your store. <My home page title>'

How to remove the text 'Your store.'

Thank you.
11 年 前
I finally got it figured out (for NOP ver 2.7). There is no need to add those three lines to the Index.cshtml.

Here are the steps:
1) Clear all three boxes on the HomePageText SEO tab  and save it.

2) Go to Configuration-->Settings-->General and Miscellaneous Settings, then click the "SEO Settings" tab and fill out the default SEO Title, Keywords, Description there.
The index page will now work correctly - no additional changes are necessary.

For some reason, setting the SEO meta tags on the HomePageText topic will not override the defaults (under "General and Miscellaneous Settings").

Hope this helps.
11 年 前
Hello:

I just installed v2.80 and I put the Page title in Configurations>Settings>General>SEO>Default Page Title.

It works fine.

I see the name on the tab of my browser.

I also notice to the left there is a little square where our logo could go.

Where can I insert this?

Thanks!
11 年 前
realdigital wrote:
Hello:

I just installed v2.80 and I put the Page title in Configurations>Settings>General>SEO>Default Page Title.

It works fine.

I see the name on the tab of my browser.

I also notice to the left there is a little square where our logo could go.

Where can I insert this?

Thanks!

https://www.nopcommerce.com/boards/t/11076/favicon-20.aspx
https://www.nopcommerce.com/boards/t/19934/favicon-placement.aspx
11 年 前
Thanks.

I didn't even know this was called a favicon.

I created it and uploaded to root as indicated. It can ONLY be called "favicon.ico" I learned.

Anyway, it works with IE, but it does not come up with FireFox or google Chrome.

Any ideas on this?

Thanks again!
11 年 前
Your browser doesn't check for it everytime the page is requested. Just give it time.
10 年 前
I using NopCommerce 3.0. I changed _ColumnsThree.cshtml to My Homepage.
In _Root.Head.cshtml, I changed like this :  <meta name="keywords" content="" />
And I added value for Default keywords in Seo Settings Tab in General and miscellaneous settings.
In _ColumnsThree.cshtml , I added :
@{
    Layout = "~/Views/Shared/_Root.cshtml";
    var keywords = @Html.NopMetaKeywords().ToString();
    Html.AddMetaKeywordParts(keywords);
}

But when I run my Homepage in browser, I view keywords is empty. Where did I do wrong? Please help me. Thanks
10 年 前
add the following to your the view


@{
    Html.AddTitleParts("page title");
    Html.AddMetaDescriptionParts("page description");
    Html.AddMetaKeywordParts("page keywords");
}
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.