Try your search with a different keyword or use * as a wildcard.
@model ProductDetailsModel
@using Nop.Core
@using Nop.Core.Domain.Catalog
@using Nop.Core.Domain.Seo
@using Nop.Services.Html
@inject IHtmlFormatter htmlFormatter
@inject IWebHelper webHelper
@inject SeoSettings seoSettings
@{
Layout = "_ColumnsOne";
//title
NopHtml.AddTitleParts(!string.IsNullOrEmpty(Model.MetaTitle) ? Model.MetaTitle : Model.Name);
//meta
NopHtml.AddMetaDescriptionParts(Model.MetaDescription);
NopHtml.AddMetaKeywordParts(Model.MetaKeywords);
//page class
NopHtml.AppendPageCssClassParts("html-product-details-page");
//canonical URL
if (seoSettings.CanonicalUrlsEnabled)
{
var productUrl = Url.RouteUrl(new { SeName = Model.SeName }, webHelper.GetCurrentRequestProtocol()).ToLowerInvariant();
NopHtml.AddCanonicalUrlParts(productUrl, seoSettings.QueryStringInCanonicalUrlsEnabled);
}
//open graph META tags
if (seoSettings.OpenGraphMetaTags)
{
NopHtml.AddHeadCustomParts("");
NopHtml.AddHeadCustomParts("");
NopHtml.AddHeadCustomParts("");
NopHtml.AddHeadCustomParts("");
NopHtml.AddHeadCustomParts("");
NopHtml.AddHeadCustomParts("");
NopHtml.AddHeadCustomParts("");
}
//Twitter META tags
if (seoSettings.TwitterMetaTags)
{
NopHtml.AddHeadCustomParts("");
NopHtml.AddHeadCustomParts("");
NopHtml.AddHeadCustomParts("");
NopHtml.AddHeadCustomParts("");
NopHtml.AddHeadCustomParts("");
NopHtml.AddHeadCustomParts("");
}
}
@section Breadcrumb
{
@await Html.PartialAsync("_ProductBreadcrumb", Model.Breadcrumb)
}
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductDetailsAfterBreadcrumb, additionalData = Model })
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductDetailsTop, additionalData = Model })
@if (Model.ProductReviewOverview.AllowCustomerReviews)
{
@await Html.PartialAsync("_ProductReviews", Model.ProductReviews)
}
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductDetailsBottom, additionalData = Model })