Skip to content

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

Pure Spa Direct
A Client Fave Returns - Single-Use Callus Remover Pouches!

Get those heels sandal-ready with Voeshopen stock or in convenient 50 pack case boxes.Details: Softening tough calluses Exfoliates dead skin Smooths dry, cracked heels Sealed fresh for every use

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