/* 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

Festive season Is Launching Soon

✨ The festive season is right around the corner, and the excitement is already in the air! It's time to embrace joy, sparkle, and unforgettable style as we prepare to unveil something truly special. From dazzling collections to irresistible offers, your celebration-ready wardrobe is almost here — stay tuned and let the festivities begin in style.

Subscribe to be the first to know when we go live.

Thanks for submitting!

Young Fashion Models
Urban Fashion
  • Facebook
  • Twitter
  • Instagram
  • LinkedIn

Click to unsubscribe

Sorry to see you go!

bottom of page