Plugins
0

FC’s Mortgage Calculator

LICENSE TYPE: INFINITE

Description

FCs Mortgage Calculator Plugin can calculate a number of unknown values including affordable home price, monthly loan payment or percentage of cost available as down payment. It can create a detailed amortization schedule with date based payments and charts. The calculator optionally supports points, private mortgage insurance (PMI), property taxes and hazard insurance. Your sites visitors can select their own currency and date convention used in the loan schedule. This is ideal if your site attracts visitors from around the globe. Select from one of four predefined sizes or you can modify CSS file to customize size and colors. Supports touch devices and a responsive websites. This plugin is based on and uses the code from my Mortgage Calculator.

Rebranding with your sites brand name is supported and encouraged.

The plugin may be used (a) in a post or pages content area via a shortcode; or (b) used in a widget area; or (c) called from any template file. See usage under installation for details.

Installation

Either (a) upload the fc-mortgage-calculator folder with all its files to the /wp-content/plugins/ folder or (b) unzip the plugins zip file in the /wp-content/plugins/ folder.

Activate the plugin through the Plugins -> Installed Plugins menu in WordPress

Usage

There are 3 mutually exclusive ways you can deploy the calculator to an individual page (though you can use all three methods on different pages within a site):

  1. If your theme supports widgets, add the plugin to a widget area through the Appearance -> Widgets menu in WordPress. WordPress v5.8 introduced the block editor to the Admins widget management screen. To install this plugin as a widget in WordPress v5.8 or later, install first the widget shortcode and then copy this plugins shortcode into it.
  2. Add the following code to your template where you want the calculator to appear. See below for options.
  3. Add the shortcode [fcmortgageplugin] in the content area of your page or post and configure shortcode parameters.

Shortcode parameters

* sc_size= tiny | small | medium | large * sc_custom_style= No | Yes * sc_add_link= No | Yes * sc_brand_name=  * sc_hide_resize= No | Yes * sc_price= * sc_pct_dwn= * sc_loan_amt= * sc_n_months= * sc_rate= * sc_points= * sc_taxes= * sc_insurance= * sc_pmi= * sc_currency= * sc_date_mask= 

Examples (1st includes all options):

[fcmortgageplugin sc_size="medium" sc_custom_style="No" sc_add_link="No" sc_brand_name="" sc_hide_resize="No" sc_price="355000.0" sc_pct_dwn="15.0" sc_loan_amt="0.0" sc_n_months="360" sc_rate="5.5" sc_points="0" sc_taxes="6000" sc_insurance="600" sc_pmi="0" sc_currency="83" sc_date_mask="2"]  [fcmortgageplugin sc_size="small" sc_custom_style="Yes" sc_hide_resize="Yes" sc_currency="83" sc_date_mask="2"]  [fcmortgageplugin sc_custom_style="No" sc_add_link="Yes" sc_brand_name="Friendly Mortgage" sc_hide_resize="Yes" sc_price="275400" sc_pct_dwn="20.0" sc_loan_amt="0.0" sc_n_months="180" sc_rate="5.5"] 

Optional array parameter passed to show_fcmortgage_plugin()

Valid values for options are the same as the shortcode above.

 "medium",         'op_custom_style' => "No",         'op_add_link' => "Yes",         'op_brand_name' => "Karl's",         'op_hide_resize' => "No",         'op_price' => "350000.00",         'op_pct_dwn' => "20.0",         'op_loan_amt' => "0.00",         'op_n_months' => "180",         'op_rate' => "5.5",         'op_points' => "2.5",         'op_taxes' => "12000.0",         'op_insurance' => "1200.0",         'op_pmi' => "0.0",         'op_currency' => "999",         'op_date_mask' => "999"         )); ?> 

Notes:

  1. If you want to add your brand to the calculator, the *_add_link option must be set to Yes (i.e. create a subtle follow link to financial-calculators.com).
  2. When branding, the brand name will be added before Mortgage Loan Calculator.
  3. If _custom_style is set to Yes, the plugin will load fin-calc-widgets-custom.css located in the plugins CSS folder. If you set the option to Yes without making any changes, the calculator will change to a horrendous red which indicates the custom css is being used.
  4. The plugin is built and tested on HTML5/CSS3 pages.
  5. size (max-width): large: 440px, medium: 340px, small: 290px, tiny: 150px
  6. The modal dialog that allows users to select a default currency and date format is NOT compatible with some other dialogs. If you have a modeal on the webpage you want to install this calculator on, either your modal or the calculators modal may not work.
  7. Website developers can set a default currency sign and preferred date format by setting _currency and _date_mask respectively. Set one or both to an integer value. For the list of integers to support 90 plus currency symbols and 6 date format options, see the file currency_and_date_conventions.txt in the plugins root folder. (example: India, Indian Rupee: ?1,23,45,678.99 = 83)

Enhanced Internationalization

Support for over 90 currency signs (using appropriate nummber formatting conventions) and 6 date formats (mm/dd/yyyy, dd/mm/yyyy, yyyy.mm.dd etc.). If neither the website developer or the user makes a selection, the calculator will read the browsers default currency and date options and automatically use them. Without doing anything, a website visitor from Japan visiting a website hosted in France will initially see a floating yen sign. The website developer can easily override this default behavior by setting either shortcodes or function options. The user (if the website designer keeps the feature enabled) can override both and select a currency and date format.

To summarize, the plugin determines what currency symbol (and date format) to use by applying the following rules:

  1. If a website allows a user to select a symbol, and the user makes a selection, the plugin uses the visitors choice first.
  2. Otherwise, if a user has not made a selection, and the website owner has set a default currency (i.e., currency does not equal 999), the calculator uses the websites selection.
  3. Otherwise, the calculator plugin will attempt to read the browsers currency default and pick a currency symbol.
  4. Otherwise, the plugin defaults to using the $ symbol.

Language Translations

New in v1.5, support for 14 languages in addition to English. The plugin also includes a translation template file (.POT) in the languages folder. Using a POT/PO file editor, website owners can translate this plugin to any language supported by WordPress.

The supported languages are:

da : Danish : Dansk
nl : Dutch : Nederlandse
fi : Finnish : Suomalainen
fr : French : Franais
de : German : Deutsch
hu : Hungarian : Magyar
it : Italian : Italiano
lt : Lithuanian : Lietuvi?
pl : Polish : Polski
pt : Portuguese : Portugus
ro : Romanian : Romnesc
ru : Russian : ???????
es : Spanish : Espaol
sv : Swedish : Svenska

Notes: (1) The plugin depends on the sites Site Language setting to display to your visitors the correct language. The files in the language folder can be renamed if needed. For example, if you want the plug to display in Portuguese the .MO and .JSON files include assume your sites language setting is Portuguese (Portugal) which is local pt_PT. But if your site is in Brazil, youll need to rename the plugins language files to use pt_BR. (2) At this time, these translations were computer generated. A fluent speaker can edit the included .PO file and regenerate the .MO file to update the tranlation. (3) If you are willing to allow me to include your edits with the plugin, Ill regenerate the .MO, and if needed the .JSON files for you.

I am making the other calculators at my website available free-of-charge to bloggers who are abe to help with translation. See the website for details.

Support

Im happy to offer support for all my plugins. If you have a question or face an issue, please go to the plugin page linked in the description above and leave your question at the bottom of the page. Im able to provide faster support at my site than I am on the WordPress.org website.

Other Calculators

As of this writing, financial-calculators.com has seven plugins listed in the WordPress Plugin Directory with several more available on the website. All plugins have the same general feature set and are consistent in their styling and the way they work. This means you can install all these plugins and maintain a consistent look and feel across your website or blog. If you blog about money, you are encouraged to install all the plugins on your site. Its simple. The more pages, the more opportunity.

Below links take you to the indicated WordPress Plugin Directory page.

  1. Auto Loan Calculator solves for several unknowns and creates a payment schedule.
  2. Loan Calculator a general purpose loan calculator with amortization schedule and charts.
  3. Retirement Age Calculator answers, at what age will I be able to retire given my investment plan?
  4. Retirement Nest Egg Calculator answers, what will be the value of my retirement fund when I retire?
  5. Retirement Savings Calculator how much do I have to invest periodically to reach my retirement goal?
  6. Savings Calculator calculates the results of regular savings and investing

Screenshots

FAQ

Can the Mortgage Calculator plugin be used on a commercial website?

Yes. I would be honored. Thanks.

Also, if you happen to be a financial blogger, I would encourage you to add a Calculators or Tools section to your site and include all my calculators. More content equals more opportunity. I expect to have six free plugins by early 2017.

Does your plugin have any embedded advertising?

Absolutely not.

Is your plugin self contained?

Yes. 100% of the plugin is installed on your server. There are no external dependencies.

Does the plugin include any backlinks?

No, not by default. If you decide to brand the calculator with your brand and / or set the add_link option to Yes, one discreet link is added to my site. (User will not know there is a link unless their mouse passes over it.) The link is around the copyright in the lower left.

Is the calculator plugin responsive?

Yes. In fact, I use it on a Bootstrap responsive site.

Does the calculator support touch devices?

Yes. Users use the calculator with all types of devices. (A previous issue with some Android devices is fixed.)

Do you offer other calculator plugins?

Yes. I have a conventional Loan Calculator hosted in this directory. And here is my widgets and plugin page where youll find other free plugins as well as some plus versions which are free for a limited time only.

I like your plugin and Id like to contribute something but I notice you dont have a link for contributions, why not?

Thank you. Thats very kind of you. Actually, you can contribute, and it wont cost you a cent. Please stop by my website and check it out. In addition to providing some very advanced calculators, I think that Im the only one that hosts a public question and answer site to provide support for their calculators. Take a look, and if you like what you see, please spread the word. Thats better than any monetary compensation.

The plugin version indicates it is new. Can I trust it?

Yes. While this is a new plugin, the calculator has been used on my site for years. It has been used by literally 100,000s of users. Any issues you might encounter would most likely be around installing it on a site. Should you run into an problem, Im happy to help resolve it.

Leave a Reply

Your email address will not be published. Required fields are marked *

Fill out this field
Fill out this field
Please enter a valid email address.
You need to agree with the terms to proceed

Most Viewed Posts
Menu