Install guide

How to add a quote calculator to WordPress

Two ways: the plugin, which does it for you, or the snippet if you'd rather not install anything.

  1. Install the free QuoteBlock plugin from Plugins → Add New.
  2. Open QuoteBlock in the admin menu and choose your trade.
  3. Replace the default rates with your prices and save.
  4. Edit any page, add a Shortcode block, and paste [quoteblock].

Worth knowing

Prefer not to install a plugin? Build a snippet here, then add a Custom HTML block to your page and paste it in. Both work; the plugin just saves you the copy-paste when you change prices.

Build your calculator — free

What the snippet looks like

Three lines. Your prices are the JSON in the middle, so you can read and edit them any time.

<div data-quoteblock="my-quote"></div>
<script type="application/json" id="my-quote">{ ...your prices... }</script>
<script src="https://quoteblock.app/v1/quoteblock.js" defer></script>

Other platforms