/* window.dataLayer = window.dataLayer || []; var cartItems = []; var productElements = document.querySelectorAll('li[data-hook="CartItemsDataHook.item"]'); var Tprice= document.querySelector('dd[data-hook="Total.formattedValue"]'); if(Tprice) {var priceTotal = Tprice.innerText.split("$")[1];} else { var priceTotal=0;} productElements.forEach(function(productElement) { // Use productElement to scope the querySelector for each product var productName = productElement.querySelector('p[data-hook="CartItemDataHook.name"]').innerText; //working // Get the price element from within the current productElement var priceText = productElement.querySelector('span[data-hook="CartItemDataHook.price"]').innerText.trim(); // working var price = parseFloat(priceText.replace('$', '')); // Fetch the quantity var quantity = parseFloat(productElement.querySelector('input[aria-label="Choose quantity"]').value); var totalPrice = price * quantity; var items = { item_id: productName.replace(/\s/g, "_"), // Replacing spaces with underscores item_name: productName, item_category: productName.split(" ")[0], price: totalPrice, quantity: quantity }; cartItems.push(items); }); console.log("Cart details:", cartItems); console.log("Pushing cartPageView to adobeDataLayer..."); window.dataLayer = window.dataLayer || []; dataLayer.push({ ecommerce: null }); // Clear the previous ecommerce object. dataLayer.push({ event: "add_to_cart", ecommerce: { currency: "USD", value: priceTotal, items: cartItems } }); */
top of page

Our Team.

This is your Team page. It's a great space to introduce your team and talk about what makes it special, such as your culture and work philosophy. Don't be afraid to illustrate personality and character to help users connect with your team.

Call 

123-456-7890 

Follow

  • Facebook
  • Twitter
  • LinkedIn
bottom of page