diff --git a/WebsitePanel/Sources/WebsitePanel.Server/Code/WPIHelper.cs b/WebsitePanel/Sources/WebsitePanel.Server/Code/WPIHelper.cs index a1d56b26..09ec94c2 100644 --- a/WebsitePanel/Sources/WebsitePanel.Server/Code/WPIHelper.cs +++ b/WebsitePanel/Sources/WebsitePanel.Server/Code/WPIHelper.cs @@ -219,6 +219,12 @@ namespace WebsitePanel.Server.Code continue; } + if (product.GetAttributeValue("searchExclude") != null) + { + // skip it, this is internal not visible product + continue; + } + if (string.IsNullOrEmpty(filter)) { products.Add(product);