import { cart } from 'wix-stores'; $w.onReady(function () { // Sepet toplamını al cart.getCurrentCart() .then((cartData) => { const total = cartData.totals.total; // Toplam sepet değeri console.log("Sepet Toplamı:", total); // Bu değeri Google Tag Manager veya Google Analytics'e gönder gtag('event', 'add_to_cart', { 'value': total, 'currency': 'TRY' }); }) .catch((error) => { console.error("Sepet bilgisi alınamadı:", error); }); });
top of page

Tüm e-Kitaplar

bottom of page