Skip to main content
Back to calculator

Embed the calculator

Add the Worth by Hand pricing calculator to your website, blog, or course platform with a simple iframe. The calculator automatically resizes to fit its content.

Iframe snippet

Copy and paste this into your page HTML. Replace the src URL with any calculator route (e.g. /candle-pricing-calculator?embed=1).

<iframe
  src="https://worthbyhand.life/handmade-product-pricing-calculator?embed=1"
  width="100%"
  height="720"
  style="border: none;"
  title="Worth by Hand pricing calculator"
></iframe>

<script>
  window.addEventListener("message", (e) => {
    if (e.data?.type === "makerprice:height" && e.data.height) {
      const iframe = document.querySelector(
        'iframe[src^="https://worthbyhand.life/handmade-product-pricing-calculator?embed=1"]'
      );
      if (iframe) iframe.style.height = e.data.height + "px";
    }
  });
</script>

What your visitors see

In embed mode, the site header and footer are hidden and only the calculator is shown. Visitors can calculate prices, save scenarios, and export PDFs just like on the main site.