W
WordPress Plugin · Free Download

One Plugin.
22 CalculatorsZero Cost.

Install once, use all 22 calculators instantly via shortcodes. EMI, SIP, compound interest, mortgage, GST, income tax and more. No coding needed.

Compatible with WordPress 5.0+ · Gutenberg + Classic Editor · No API key needed

your-wordpress-page.com/home-loan-calculator/
[fch_calculator type="emi" theme="dark" currency="INR"]
🏦 EMI Calculator
Monthly EMI
₹10,247.53
Total Interest
₹1,14,851.80

Everything You Need, Nothing You Don't

Built specifically for finance bloggers, loan advisors, and fintech sites that want calculators that look professional.

5-Minute Setup
Upload the plugin ZIP, activate it, and paste a shortcode anywhere — page, post, or widget. Done.
🎨
3 Built-in Themes
Light, dark, and auto (inherits your site theme). Override any color via shortcode attributes.
🌍
3 Languages
English, Hindi, and Arabic. Calculators auto-detect your WordPress locale or accept a lang attribute.
📱
Fully Responsive
Works on mobile, tablet, and desktop. Tested with Elementor, Divi, Astra, and GeneratePress.
🔒
Privacy First
All calculations run in the browser — zero data sent to any server. GDPR friendly out of the box.
📈
SEO-Friendly
Semantic HTML, ARIA labels, and structured output. Each calculator includes a FAQ schema block.

All 22 Calculators Included

Every calculator below is ready to embed with a single shortcode

Installation Guide

Get up and running in under 5 minutes

1
Download & Install

Download the plugin ZIP file. In your WordPress dashboard, go to Plugins → Add New → Upload Plugin, choose the ZIP, and click Install Now.

⬇ Download financecalcshub.zip
2
Activate the Plugin

Click Activate Plugin after installation. A new FinanceCalcsHub menu item will appear in your dashboard sidebar.

3
Add a Shortcode

Open any page or post editor and paste a shortcode. Gutenberg users can use the Shortcode block or the dedicated FinanceCalcsHub block.

[fch_calculator type="emi"]
[fch_calculator type="sip" theme="light" lang="hi"]
[fch_calculator type="gst" currency="SAR" lang="ar"]
4
Publish & Done

Publish your page. The calculator renders client-side — no server load, no extra database queries. Update regularly via WordPress auto-updates.

Shortcode Reference

Copy any shortcode and paste into your post or page editor

Calculator Shortcode Description

Shortcode Attributes

AttributeValuesDefaultDescription
themelight · dark · autoautoWidget color theme
langen · hi · arenCalculator language / locale
currencyINR · USD · GBP · SARINRCurrency symbol in results
widthCSS value e.g. 100%, 500px100%Widget container width
bordertrue · falsetrueShow border around widget
attributiontrue · falsetrueShow "Powered by" link (please keep true)

Using in PHP Templates

php · template usage
<!-- In any WordPress template file -->

<!-- Method 1: Shortcode in PHP -->
<?php echo do_shortcode('[fch_calculator type="emi" currency="INR"]'); ?>

<!-- Method 2: Direct function call -->
<?php
if (function_exists('fch_render_calculator')) {
    fch_render_calculator([
        'type'        => 'emi',
        'theme'       => 'dark',
        'currency'    => 'INR',
        'lang'        => 'en',
        'attribution' => true,
    ]);
}
?>

Frequently Asked Questions