Shortcodes

The Mortgage Calculator plugin has one shortcode available:

[mortgage_calculator]

Simply add that shortcode to the page or post where you wish the mortgage calculator to be displayed.

Should you wish to default the 'Purchase Price' field to a dynamic value (e.g. on a property page) you can pass a price attribute through like so:

[mortgage_calculator price="200000"]

If you're doing this in a Property Hive template you might do something like so:

<?php 
global $property;
echo do_shortcode('[mortgage_calculator price="' . $property->price_actual . '"]'); 
?>