Skip to content

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

Pure Spa Direct
Keeping Your Money Safe

When it comes to running any type of business, keeping money organized and safe is extremely important.Having items that make it easy to keep money organized and easily accessible helps...

Read more
Counterfeit Money in Day Spas and Salons...

We're real, trust us! Counterfeit bills would never show up as payment in a spa, salon or medical practice, right? Think again. As the rough economy drags on, more and...

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); });