Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
jQuery(document).ready(function ($) { // Fungsi untuk memperbarui jumlah item dalam keranjang function updateCartCount() { $.ajax({ url: ajaxurl, // URL untuk AJAX (otomatis dihasilkan oleh WordPress) type: 'POST', data: { action: 'update_cart_count' // Nama aksi yang sesuai dengan PHP }, success: function (response) { $('.cart-item-count').text(response); // Update elemen jumlah keranjang }, }); } // Trigger untuk memperbarui jumlah keranjang setiap kali ada perubahan di WooCommerce $(document.body).on('added_to_cart removed_from_cart', function () { updateCartCount(); // Panggil fungsi untuk memperbarui }); });
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
1 comment
A WordPress Commenter
Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from Gravatar.