Array.from(document.querySelectorAll('LINK')) .filter( (el) => el.rel === 'stylesheet' && el.className.includes('anf-') && el.className !== `anf-${window.Shopify.theme.id}`, ) .forEach((el) => el.remove()) Array.from(document.querySelectorAll('STYLE')) .filter( (el) => el.type === 'text/css' && el.className.includes('anf-') && el.className !== `anf-${window.Shopify.theme.id}`, ) .forEach((el) => el.remove())