From e6faa6321930de0a852763ef116824a7e471267c Mon Sep 17 00:00:00 2001 From: sebseb7 Date: Tue, 18 Nov 2025 08:35:19 +0100 Subject: [PATCH] fix(SEO): update skipCategoryIds to include additional categories - Expanded the skipCategoryIds array to include new category IDs: 924, 923, 922, 921, 916, 278, 259, and 258. - This change ensures that the specified categories are excluded from product XML generation. --- 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 55461b4..acd0f1e 100644 --- a/prerender/seo/feeds.cjs +++ b/prerender/seo/feeds.cjs @@ -328,7 +328,7 @@ const generateProductsXml = (allProductsData = [], baseUrl, config) => { const productsNeedingDescription = []; // Category IDs to skip (seeds, plants, headshop items) - const skipCategoryIds = [689, 706, 709, 711, 714, 748, 749, 896, 710]; + const skipCategoryIds = [689, 706, 709, 711, 714, 748, 749, 896, 710, 924, 923, 922, 921, 916, 278, 259, 258]; // Add each product as an item allProductsData.forEach((product, index) => {