// Kiểm tra xem cookie googtrans đã tồn tại chưa và URL có tham số lang không if (!document.cookie.includes('googtrans') && !window.location.search.includes('lang')) { fetch('https://ipinfo.io/json?token=2bad8a21e70f29') .then(response => response.json()) .then(data => { let languageCode; if (data.country === 'VN') { languageCode = 'vi'; } else { switch (data.country) { case 'US': languageCode = 'en'; break; case 'FR': languageCode = 'fr'; break; case 'ES': languageCode = 'es'; break; // Thêm các mã quốc gia và ngôn ngữ khác tại đây default: languageCode = 'en'; } } // Chỉ đặt cookie nếu nó chưa tồn tại hoặc có giá trị khác if (!document.cookie.includes(`googtrans=/${languageCode}`)) { document.cookie = `googtrans=/${languageCode}; path=/;`; window.location.reload(); // Chỉ reload nếu cookie được thay đổi } }) .catch(error => console.error('Lỗi:', error)); }

The best choices for your home and kitchen

My website: https://ApplianceAficionado.com/

At ApplianceAficionado.com, we are passionate about helping you make the best choices for your home and kitchen. From coffee makers and dishwashers to blenders, pressure cookers, and microwaves, we provide in-depth reviews, side-by-side comparisons, and expert tips on a wide range of appliances.

Our mission is to guide you in finding products that combine quality, functionality, and value. Whether you’re a home chef seeking the perfect tools or simply upgrading your kitchen essentials, we’re here to make the decision process easier and more informed.

Để lại một bình luận

Email của bạn sẽ không được hiển thị công khai. Các trường bắt buộc được đánh dấu *