Skip to content

Call or Text Us: 800-434-0018 | For Salon, Spa & Med Pros ONLY... 85,000+ Items!

Pure Spa Direct
Suggestions and Ideas for Winter Body Wraps!

Now that we have officially entered the skin-ravaging days of winter, it is the perfect time to offer body wraps designed to moisturize and hydrate your clients' dry and cracking...

Read more

Cart

Close

Your cart is currently empty.

Start Shopping

Select options

Close
document.addEventListener('DOMContentLoaded', function() { const targetNode = document.body; // Observing the entire body for changes const updatePrice = (product) => { // Check if the product has the 'snize-product-tag-showretail' tag if (product.classList.contains('snize-product-tag-showretail')) { const priceElement = product.querySelector('.snize-price.money'); if (priceElement) { let priceText = priceElement.textContent.trim(); // Remove the existing "Retail Price:" prefix if present if (priceText.startsWith("Retail Price: ")) { priceText = priceText.replace("Retail Price: ", ""); } // Add the note with HTML content if (!priceText.endsWith('*')) { priceElement.innerHTML = `Retail Price: ${priceText}*
*Call 800-434-0018 for wholesale.
`; } } } }; const observer = new MutationObserver((mutations) => { mutations.forEach((mutation) => { if (mutation.addedNodes) { mutation.addedNodes.forEach((node) => { if (node.nodeType === 1 && node.classList.contains('snize-product')) { updatePrice(node); } else if (node.nodeType === 1 && node.querySelectorAll('.snize-product').length > 0) { node.querySelectorAll('.snize-product').forEach(updatePrice); } }); } }); }); observer.observe(targetNode, { childList: true, subtree: true }); // Initial pass to update existing prices on page load document.querySelectorAll('.snize-product').forEach(updatePrice); });