top of page
bottom of page
(function () {
if (window.location.pathname === '/fondo-fal') {
const removeWhatsApp = () => {
document.querySelectorAll('.czm-chat-support').forEach(el => {
el.remove();
});
};
removeWhatsApp();
const observer = new MutationObserver(removeWhatsApp);
observer.observe(document.body, {
childList: true,
subtree: true
});
}
})();