Embed Life Path Calculator on Your Website
Add our Life Path Number Calculator to your website with just two lines of code. Free, customizable, and works on any platform.
Quick Start
Copy and paste this code into your HTML:
<script src="https://lifepathcalculator.vercel.app/lp-widget.v1.js" defer></script>
<div data-lp-widget
data-method="segmented"
data-keep-final="true"
data-keep-stage="false"
data-enable-33="true">
</div>
Live Demo
This is how the widget appears on your site:
Configuration Options
Attribute | Values | Default | Description |
---|---|---|---|
data-method | "segmented" | "total" | "segmented" | Calculation method |
data-keep-final | "true" | "false" | "true" | Keep master numbers in final result |
data-keep-stage | "true" | "false" | "false" | Keep master numbers at stage |
data-enable-33 | "true" | "false" | "true" | Treat 33 as master number |
Integration Examples
WordPress
Add to any post or page using the Custom HTML block:
<!-- In WordPress Custom HTML Block -->
<script src="https://lifepathcalculator.vercel.app/lp-widget.v1.js" defer></script>
<div data-lp-widget
data-method="segmented"
data-keep-final="true"
data-keep-stage="false"
data-enable-33="true">
</div>
React/Next.js
Add to your component or page:
useEffect(() => {
const script = document.createElement('script');
script.src = 'https://lifepathcalculator.vercel.app/lp-widget.v1.js';
script.defer = true;
document.body.appendChild(script);
}, []);
return <div data-lp-widget data-method="segmented"></div>;
Notion
Use the Embed block and paste the widget URL with parameters:
https://lifepathcalculator.vercel.app/widget/embed?method=segmented&keep-final=true
Features
✓ Lightweight
Only 3KB minified, loads async
✓ Responsive
Works on all screen sizes
✓ No Dependencies
Pure JavaScript, no frameworks needed
✓ Customizable
Configure calculation methods
Terms of Use
- ✓ Free for personal and commercial use
- ✓ Attribution link must remain visible
- ✓ No warranty provided - use at your own risk
- ✓ We may update the widget code periodically
Need Help?
If you encounter any issues or have questions about integrating the widget, please check our FAQ or contact support.