fetch('https://https://appijumper.lovelyplatform.fr/wp-json/wc/v3/products', {
headers: {
'Authorization': 'Basic ' + btoa('ck_ae213e96d4e701e319cbc63d892fee0d8924eb06:cs_4fa5ef7628a70225e9c4ca2dbb27b8413b176cb9')
}
})
.then(response => response.json())
.then(data => console.log(data));
fetch('https://appijumper.lovelyplatform.fr/wp-json/wc/v3/cart', {
headers: {
'Authorization': 'Basic ' + btoa('ck_ae213e96d4e701e319cbc63d892fee0d8924eb06:cs_4fa5ef7628a70225e9c4ca2dbb27b8413b176cb9')
}
})
.then(response => response.json())
.then(data => {
const cartTotal = data.total;
const cartQty = data.cart_contents_count;
document.querySelector('.woocommerce-Price-amount').innerHTML = `€ ${cartTotal}`;
document.querySelector('.elementor-menu-cart__toggle_button .elementor-button-icon-qty').innerHTML = cartQty;
});