Блог!

Будьте в курсі новин про нові біткойн-банкомати у вашому регіоні, акції та події у світі, пов'язані з Bitcoin ATM!

Дописи в блозі

*/ (async function () { async function getCountryCode() { try { var res = await fetch('https://shitcoins.club/client/country', { cache: 'no-store' }); var data = await res.json(); return (data.countryCode || '').toLowerCase(); } catch (e) { return null; } } function parseBool(text) { var t = (text || '').trim().toLowerCase(); return (t === 'true' || t === 'yes' || t === '1' || t === 'on'); } var cc = await getCountryCode(); if (cc !== 'es') return; // Webflow CMS items on listing pages are usually wrapped in .w-dyn-item document.querySelectorAll('.w-dyn-item').forEach(function (item) { var flag = item.querySelector('.spain-hide-flag'); // <-- matches your embed if (!flag) return; var shouldHide = parseBool(flag.textContent); if (shouldHide) item.style.display = 'none'; // or item.remove(); }); })();