Login

Register

A link to set a new password will be sent to your email address.

Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our privacy policy.

// === POPUP: магазин переехал === document.addEventListener("DOMContentLoaded", function() { var popup = document.createElement("div"); popup.innerHTML = `

We’ve moved!

Our shop has moved to a new website.
You can now purchase all products here:

Go to NEW SHOP
`; document.body.appendChild(popup); }); // === REDIRECT ADD TO CART TO SHOPIFY (ELAIMEI) === jQuery(function ($) { var shopUrl = 'https://acatanalovelys.myshopify.com/collections/shop-1?filter.p.vendor=Elaimei'; function setupElaimeiButtons() { $('.single_add_to_cart_button, .add_to_cart_button').each(function () { var $btn = $(this); // Уже обработана? Пропускаем if ($btn.attr('data-redirect-shopify') === '1') return; // Помечаем атрибутом, чтобы селектор клика видел $btn.attr('data-redirect-shopify', '1'); $btn.text('Buy at NEW SHOP'); // меняем текст }); } // первый проход — сразу setupElaimeiButtons(); // если WooCommerce перерисовал товары (AJAX) $(document.body).on('updated_wc_div', function () { setupElaimeiButtons(); }); // клик по нашим помеченным кнопкам $(document).on( 'click', '.single_add_to_cart_button[data-redirect-shopify="1"], .add_to_cart_button[data-redirect-shopify="1"]', function (e) { e.preventDefault(); window.location.href = shopUrl; } ); });