From 33fadc0279005aacf0c4ceda1494b9e352d4d586 Mon Sep 17 00:00:00 2001 From: sebseb7 Date: Fri, 18 Jul 2025 13:18:08 +0200 Subject: [PATCH] Update excluded terms in product XML generation: Added 'marihuana' to the list of excluded terms in product titles within feeds.cjs, enhancing content filtering for SEO purposes. --- prerender/seo/feeds.cjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prerender/seo/feeds.cjs b/prerender/seo/feeds.cjs index 9f505e4..3ecc436 100644 --- a/prerender/seo/feeds.cjs +++ b/prerender/seo/feeds.cjs @@ -321,7 +321,7 @@ const generateProductsXml = (allProductsData = [], baseUrl, config) => { const productDescription = (product.description || "").toLowerCase(); const excludedTerms = { - title: ['canna', 'hash', 'marijuana'], + title: ['canna', 'hash', 'marijuana', 'marihuana'], description: ['cannabis'] };