Tag" section to check search result URLs.
.w-dyn-item
.To hide search result items in Webflow when their URL contains "/sku/" and they link to a blank page, use JavaScript to manipulate the search result DOM elements.
document.addEventListener("DOMContentLoaded", function () { // Select all search result links document.querySelectorAll('.w-dyn-item a').forEach(function (link) { if (link.href.includes('/sku/')) { // Check if the page is blank by fetching content fetch(link.href).then(response => response.text()).then(html => { if (!html.trim()) { // Hide the parent search result item link.closest('.w-dyn-item').style.display = 'none'; } }).catch(() => { // If an error occurs (e.g., 404), hide the item link.closest('.w-dyn-item').style.display = 'none'; }); } });});
w-dyn-item
(which Webflow uses for dynamic collections).href
contains /sku/
, indicating a product-related page..w-dyn-item
).This JavaScript snippet removes search results dynamically by checking if their URLs contain "/sku/
" and if their content is empty. If blank, the corresponding .w-dyn-item
is hidden.