Bleiben Sie auf dem Laufenden über Neuigkeiten zu neuen Bitcoin-Automaten Ihrer Nähe, Sonderangeboten und weltweiten Ereignissen rund um Bitcoin-Geldautomaten!
*/
(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();
});
})();