- 22
Hi I have modify some pages of this super theme for a better seo experience.
Maybe this could help someone:
file /view/catalog/productsbytag.cshtml
After the //title I have add the page description (and added in the configurations->languages the resource name: PageDescription.ProductsByTag and a inserted a value)
//description
Html.AddMetaDescriptionParts(T("PageDescription.ProductsByTag").Text);
I have done the same for the following pages:
View/product/newproducts.cshtml
Html.AddMetaDescriptionParts(T("PageDescription.newproducts ").Text);
view/catalog/manuafacturerAll.cshtml
view/customer/login.cshtml
view/product/recentlyviewedproducts.cshtml
view/customer/register.cshtml
view/catalog/search.cshtml
In the following page
view/product/productreview.cshtml
I had a lot of duplicate pages so I have done this:
//description
Html.AddMetaDescriptionParts(Model.ProductName); Html.AddMetaDescriptionParts(T("PageDescription.ProductReviews").Text);
Hope this will help someone
Lorenzo
Maybe this could help someone:
file /view/catalog/productsbytag.cshtml
After the //title I have add the page description (and added in the configurations->languages the resource name: PageDescription.ProductsByTag and a inserted a value)
//description
Html.AddMetaDescriptionParts(T("PageDescription.ProductsByTag").Text);
I have done the same for the following pages:
View/product/newproducts.cshtml
Html.AddMetaDescriptionParts(T("PageDescription.newproducts ").Text);
view/catalog/manuafacturerAll.cshtml
view/customer/login.cshtml
view/product/recentlyviewedproducts.cshtml
view/customer/register.cshtml
view/catalog/search.cshtml
In the following page
view/product/productreview.cshtml
I had a lot of duplicate pages so I have done this:
//description
Html.AddMetaDescriptionParts(Model.ProductName); Html.AddMetaDescriptionParts(T("PageDescription.ProductReviews").Text);
Hope this will help someone
Lorenzo