Wireless Pro™ Scent Diffuser (2024)

Wireless Pro™ Scent Diffuser (1)

Wireless Pro™ Scent Diffuser (2)

Wireless Pro™ Scent Diffuser (3)

Wireless Pro™ Scent Diffuser (4)

Wireless Pro™ Scent Diffuser (5)

Wireless Pro™ Scent Diffuser (6)

Wireless Pro™ Scent Diffuser (7)

Wireless Pro™ Scent Diffuser (8)

Wireless Pro™ Scent Diffuser (9)

Wireless Pro™ Scent Diffuser (10)

Wireless Pro™ Scent Diffuser (11)

Wireless Pro™ Scent Diffuser (12)

Wireless Pro™ Scent Diffuser (13)

Wireless Pro™ Scent Diffuser (14)

Wireless Pro™ Scent Diffuser (15)

Wireless Pro™ Scent Diffuser (16)

Wireless Pro™ Scent Diffuser (17)

Wireless Pro™ Scent Diffuser (18)

Wireless Pro™ Scent Diffuser (19)

Wireless Pro™ Scent Diffuser (20)

Wireless Pro™ Scent Diffuser (21)

Wireless Pro™ Scent Diffuser (22)

Wireless Pro™ Scent Diffuser (23)

Wireless Pro™ Scent Diffuser (24)

Wireless Pro™ Scent Diffuser (25)

Wireless Pro™ Scent Diffuser (26)

Wireless Pro™ Scent Diffuser (27)

Wireless Pro™ Scent Diffuser (28)

Wireless Pro™ Scent Diffuser (29)

$299.95 $99.95

Save 67%

`; const newDiv = document.createElement('div'); newDiv.id = 'free-with-subs-price'; newDiv.innerHTML = newPriceNode; priceListCtn.insertAdjacentElement('afterend', newDiv); priceListCtn.style.display = 'none'; if(topLinePriceNode) { topLinePriceNode.style.display = 'none'; } } else { priceListCtn.style.display = 'none'; if(topLinePriceNode) { topLinePriceNode.style.display = 'none'; } addedFreeWithSubsPriceNode.style.display = 'block'; } } else if (option == 'pay-in-full') { const freeWithSubsPriceNode = document.getElementById('free-with-subs-price'); if (freeWithSubsPriceNode) { freeWithSubsPriceNode.style.display = 'none'; priceListCtn.style.display = 'flex'; } handleAddOnProductChange(showCombinedPrice); updateBlockPrice(); handleSellingPlanChange() } } } function handleAddOnProductChange(showCombinedPrice) { let addOnPlaceholder = document.querySelector('.adn-block__select-placeholder'); if(!addOnPlaceholder) addOnPlaceholder = document.querySelector(".adn-block__selected"); addOnPlaceholder.addEventListener('click', function () { const addOnProductInputs = document.querySelectorAll('.adn-block__dropdown-input'); // console.log('addOnProductInputs', addOnProductInputs) addOnProductInputs.forEach((input) => { input.addEventListener('change', function (event) { updateBlockPrice(showCombinedPrice); handleSellingPlanChange(); }); }); }); } function updateBlockPrice(showCombinedPrice) { const payInFullPriceNode = document.getElementById('payment-block-price-pay-in-full'); const productPriceNode = document.querySelector('.price-list.prive_price-list'); if (payInFullPriceNode && productPriceNode) { payInFullPriceNode.innerHTML = productPriceNode.innerHTML; } const payInFullBlock = document.getElementById('pay-in-full-card'); const currencySign = '${{amount}}'.split('{')[0]; const addOnSlashedPriceLNode = document.getElementById('add-on-slashed-price'); const addOnSalePriceLNode = document.getElementById('add-on-sale-price'); const paymentOptionSlashedPrice = payInFullBlock.querySelector('#prive_price_elem s'); const paymentOptionSalePrice = payInFullBlock.querySelector('.sale_price.price--large'); // console.log('addOnProductInputs', addOnSlashedPriceLNode, addOnSalePriceLNode, paymentOptionSlashedPrice, paymentOptionSalePrice) const totalSlashedPrice = parseFloat(paymentOptionSlashedPrice.innerHTML.split(currencySign)[1].replace(/,/g, '')) + parseFloat(addOnSlashedPriceLNode ? addOnSlashedPriceLNode.innerHTML.split(currencySign)[1].replace(/,/g, '') : addOnSalePriceLNode.innerHTML.split(currencySign)[1].replace(/,/g, '')) const totalSalePrice = parseFloat(paymentOptionSalePrice.innerHTML.split(currencySign)[1].replace(/,/g, '')) + parseFloat(addOnSalePriceLNode.innerHTML.split(currencySign)[1].replace(/,/g, '')) const slashedOutPrice = currencySign + totalSlashedPrice.toFixed(2); const salePrice = currencySign + totalSalePrice.toFixed(2); // let savings = (((totalSlashedPrice - totalSalePrice) * 100) / totalSlashedPrice); // savings = savings.toFixed() + '%' let savings = currencySign + (totalSlashedPrice - totalSalePrice).toFixed(2); paymentOptionSlashedPrice.innerHTML = slashedOutPrice; paymentOptionSalePrice.innerHTML = salePrice; if(showCombinedPrice && showCombinedPrice == "true") { updateTopLinePrice(slashedOutPrice, salePrice, savings) } } function updateTopLinePrice(slashedOutPrice, salePrice, savings) { const priceListCtn = document.querySelector('.prive_product-meta__price-list-container'); const addedTopLinePriceNode = document.getElementById('top-line-price'); if (!addedTopLinePriceNode) { const newPriceNode = `

${slashedOutPrice} ${salePrice}

Save ${savings}

`; const newDiv = document.createElement('div'); newDiv.id = 'top-line-price'; newDiv.innerHTML = newPriceNode; priceListCtn.insertAdjacentElement('afterend', newDiv); priceListCtn.style.display = 'none'; } else { addedTopLinePriceNode.style.display = "block"; priceListCtn.style.display = 'none' } } function handleSellingPlanChange() { const sellingPlansInputs = document.querySelectorAll('input[name="ab0_selling_plan"]'); sellingPlansInputs.forEach((input) => { input.addEventListener('change', function (event) { const id = input.id; updateBlockPrice() }); }); } function handeFreeWSubBlockPriceUpdate() { const priceListCtn = document.querySelector('.prive_product-meta__price-list-container'); const payInFullPriceNode = document.getElementById('payment-block-price-pay-in-full'); const productPriceNode = document.querySelector('.price-list.prive_price-list'); if (payInFullPriceNode && productPriceNode) { payInFullPriceNode.innerHTML = productPriceNode.innerHTML; } // changeSubsBenefitTextAddOn(); if (payInFullPriceNode && productPriceNode) { payInFullPriceNode.innerHTML = productPriceNode.innerHTML; } const addedFreeWithSubsPriceNode = document.getElementById('free-with-subs-price'); if (!addedFreeWithSubsPriceNode) { const productPrice = '$299.95'; const newPriceNode = `

${productPrice} $0.00

Save -${productPrice}

`; const newDiv = document.createElement('div'); newDiv.id = 'free-with-subs-price'; newDiv.innerHTML = newPriceNode; priceListCtn.insertAdjacentElement('afterend', newDiv); priceListCtn.style.display = 'none'; } else { priceListCtn.style.display = 'none'; addedFreeWithSubsPriceNode.style.display = 'block'; } }

'; paymentOptionsDataObj.blocks = blocksArr;

Introducing the revolutionary Aroma360 Wireless Pro™ (Patent Pending), the first-ever waterless and heatless portable scent diffuser in the market. Embrace the future of aromatic indulgence with its stunning modern design that effortlessly complements any space. Enjoy a serene environment as the silent diffusing technology fills your surroundings with enchanting fragrances, creating a tranquil ambiance without any noise disruption. Experience the ultimate convenience with the mess-free, easy-to-add oil refills, making scenting your space a breeze. Powered by advanced cold-air diffusion, this groundbreaking device emits a dry nano-mist, leaving no residue behind, ensuring the safest and cleanest way to envelop your space in captivating scents. With up to 12 hours of portable usage, you can effortlessly transport the Wireless Pro™ (Patent Pending) wherever you go. Discover a new level of sensory delight with the Aroma360 Wireless Pro™ (Patent Pending), the pinnacle of innovation, style, and convenience in scent diffusion.

  • Scents up to 600 sq ft
  • Portable
  • Silent Scenting
  • No Wires
  • Scents 20% More
  • 3.25" widthx 11.25" height
  • Compatible exclusively with the Pro-Pod™ (Patent Pending) bottle
  • Includes remote-control for easy scent density adjusting
  • Heatless & waterless atomizer technology preserves the structural integrity of fragrance oils
  • Dry mist leaves no residue
  • Safe for pets and children
Wireless Pro™ Scent Diffuser (2024)

References

Top Articles
Latest Posts
Article information

Author: Van Hayes

Last Updated:

Views: 6547

Rating: 4.6 / 5 (66 voted)

Reviews: 81% of readers found this page helpful

Author information

Name: Van Hayes

Birthday: 1994-06-07

Address: 2004 Kling Rapid, New Destiny, MT 64658-2367

Phone: +512425013758

Job: National Farming Director

Hobby: Reading, Polo, Genealogy, amateur radio, Scouting, Stand-up comedy, Cryptography

Introduction: My name is Van Hayes, I am a thankful, friendly, smiling, calm, powerful, fine, enthusiastic person who loves writing and wants to share my knowledge and understanding with you.