Free shipping for all orders over $200. Only in this week

You may be interested in…

Back to Top
Product has been added to your cart
// WhatsApp Welcome Popup 强制触发代码(ID: 23038) document.addEventListener('DOMContentLoaded', function() { // 页面加载完成后,延迟2000ms(2秒)触发弹窗 setTimeout(function() { // 检查Elementor弹窗对象是否加载完成 if (window.elementorFrontend && window.elementorFrontend.hooks) { // 强制触发ID为23038的弹窗 elementorFrontend.hooks.doAction('elementor/popup/show', 23038); } else { // 兜底方案:等待Elementor加载完成后重试 const checkInterval = setInterval(function() { if (window.elementorFrontend && window.elementorFrontend.hooks) { clearInterval(checkInterval); elementorFrontend.hooks.doAction('elementor/popup/show', 23038); } }, 500); // 10秒后停止重试,避免无限循环 setTimeout(function() { clearInterval(checkInterval); }, 10000); } }, 2000); // 可选:每个会话只弹一次(避免重复打扰访客) if (!sessionStorage.getItem('whatsapp_popup_shown')) { sessionStorage.setItem('whatsapp_popup_shown', 'true'); } else { return; } });
Compare (0)