Plugin which allows WordPress users to connect their WordPress install to Formable.
Formable is a service which allows for easy form building and embedding. You'll need an account to make use of this plugin on WordPress.
Read the full installation guide which is available on Formable's support page.
- Download latest plugin zip.
- Extract to
/wp-content/plugins
. - Click "Formable" in the left menu bar in your WordPress admin.
- Choose "Connect to Formable".
- Accept.
- Party!
On the settings page after connecting, you'll see the list of forms you created on Formable. A shortcode will be shown which you can use in posts and pages.
You'll need node and npm installed.
- Extract contents of repository in a folder.
- Run
npm run build
to buildsass
andjs
source.
npm run webpack:dev
to run JavaScript building in watch mode.npm run sass:dev
to run Sass building in watch mode.
Place the following in your wp-config.php
to overwrite the URLs in PHP (The URLs are examples).
define('FORMABLE_API_URL', 'http://localhost:9191');
define('FORMABLE_STATIC_URL', 'http://localhost:9090');
You can adjust the URL passed defined in webpack's config by adding a simple env param.
npm run webpack -- --env.appUrl=http://localhost:9090
npm run webpack:dev -- --env.appUrl=http://localhost:9090