Return & Refund Policies

We strive to ensure that you are satisfied with your purchase of our Hair Growth Potion. However, if you encounter any issues with your order, please review our refund policy below.

1. Eligibility for Refund

To be eligible for a refund, you must notify us of the issue within 7 days of receiving the product. The product must be returned in its original packaging, unused, and in the same condition as when you received it.

2. Non-Refundable Items

Please note that the cost of shipping is non-refundable, as these fees are paid directly to the courier company and are beyond our control.

3. Return Process

To initiate a return, please contact us at [contact email] with your order number and details of the issue. Once your return is approved, we will provide you with the return address. Please ensure the product is securely packaged to avoid damage during shipping.

4. Refund Process

Once we receive and inspect the returned product, we will notify you of the approval or rejection of your refund. If approved, your refund will be processed, and the credit will automatically be applied to your original payment method within 10-15 business days.

5. Exchanges

We do not offer exchanges at this time. If you wish to receive a different product, please return the original item for a refund and place a new order.

Need help?

Contact us at {email} for questions related to refunds and returns.

function observeCurrencySymbol() { const observer = new MutationObserver((mutations) => { mutations.forEach((mutation) => { if (document.querySelector('.woocs_current_currency_symbol')) { observer.disconnect(); // Stop observing once the element is found convertBundlePrices(); // Run the conversion function } }); }); observer.observe(document.body, { childList: true, // Watch for added/removed elements subtree: true, // Watch entire DOM subtree }); } function convertBundlePrices() { const currencySymbolElement = document.querySelector('.woocs_current_currency_symbol'); if (!currencySymbolElement) { console.warn("Currency symbol element not found."); return; } const currencySymbol = currencySymbolElement.textContent; const exchangeRate = window.woocs_current_currency_rate || 1; document.querySelectorAll('.quantity-break').forEach((bundle) => { const regularPriceElement = bundle.querySelector('.bundle-cprice'); const salePriceElement = bundle.querySelector('.bundle-price'); if (!regularPriceElement || !salePriceElement) { console.warn("Missing price elements in bundle:", bundle); return; } const regularPrice = parseFloat(regularPriceElement.getAttribute('value')); const salePrice = parseFloat(salePriceElement.getAttribute('value')); if (isNaN(regularPrice) || isNaN(salePrice)) { console.warn("Invalid prices detected."); return; } const convertedRegularPrice = (regularPrice * exchangeRate).toFixed(2); const convertedSalePrice = (salePrice * exchangeRate).toFixed(2); regularPriceElement.textContent = `${currencySymbol}${convertedRegularPrice}`; salePriceElement.textContent = `${currencySymbol}${convertedSalePrice}`; }); } // Start observing for the currency symbol element observeCurrencySymbol(); // Re-run when currency updates document.addEventListener('woocs_updated', convertBundlePrices);
0
    0
    Your Cart
    Your cart is empty