Unkillable Tools / Calculator / A WordPress calculator without the plugin
Calculator plugins are among the most commonly abandoned and most aggressively upsold in the WordPress ecosystem. There's a simpler route that doesn't involve installing anything.
Paste something like this into a Custom HTML block and you're done.
Change the rates, the labels and the maths to match your business, then export it as a single HTML file you paste into your site. Free, no account, and it keeps working whatever happens to us.
Open the builderAttack surface. Every plugin is PHP running with your site's privileges. A calculator does not need database access or the ability to execute server-side code, and giving it those things to render some arithmetic is a poor trade.
Maintenance. Plugins need updating, break on major WordPress releases, and get abandoned. A block of HTML in a post has no update path because it has no moving parts.
Performance. Calculator plugins commonly enqueue jQuery plus their own bundles on every page of your site, not just the page with the calculator. A self-contained block loads only where you paste it.
Licensing. Most capable calculator plugins are annual licences, and when the licence lapses you typically lose updates and sometimes the builder itself.
Build your calculator, copy the exported block, then in the WordPress editor add a Custom HTML block and paste it in. Preview, publish. That's the entire process.
If you use the Classic editor, switch to the Text tab rather than Visual before pasting, or the editor will strip the script. In a page builder like Elementor or Divi, use their HTML/Code widget.
To change it later, either edit the block directly or reopen your saved project file in the builder and re-export. Nothing about this requires our permission or our servers.
WordPress.com's lower tiers strip <script> tags from posts. This affects every embed approach on those plans, not just this one — it's why hosted widget services also fail there and push you to a paid tier.
Self-hosted WordPress (the wordpress.org kind, which is the overwhelming majority of business sites) has no such restriction and works exactly as described.
Yes. All styling is scoped to the calculator's own generated id, so your theme can't restyle it and it can't leak styles into your theme.
Yes, anywhere WordPress accepts a Custom HTML block, including widget areas and footers.
It's roughly 21 KB inline with no external requests, so there's no extra round trip at all — typically faster than a plugin that enqueues separate CSS and JS files.
Yes. Each export gets a unique generated id, so they don't collide.
Hosted calculator builders charge $5–$115 a month and stop rendering when you exceed your monthly impressions. This one exports a file that runs on your own site and cannot be switched off.
Build one free