Forms Bridge 3.4.3
Forms Bridge 3.4.3 is now available. This patch includes bridge template descriptions and a new job for the listmonk addon. Changes Download Forms Bridge plugin from WordPress.org.
Here you can find Forms Bridge news, code snippets and much more. Start by using the search bar to find what are you looking for or use categories to filter the contents.
Forms Bridge 3.4.3 is now available. This patch includes bridge template descriptions and a new job for the listmonk addon. Changes Download Forms Bridge plugin from WordPress.org.
Forms Bridge 3.4.2 is now available. This patch includes minor fixes on templates and support for default values in settings sanitization. Changes Download Forms Bridge plugin from WordPress.org.
In this tutorial we will talk about the debug console and how you can use it to inspect your bridges running under the hood. Forms Bridge is a plugin that handles form submission as a stream of data that flows from your WordPress forms to your backend APIs. No records are saved on the database,…
Forms Bridge has a variety of workflow jobs out of the box. At the same time, its possible to register custom workflow jobs from your theme or plugin using PHP. A workflow job is nothing more than a function that gets a submission payload and a bridge instance as input parameters and returns the payload…
In the tutorial we will explain in detail mutation layers and json fingers. The tutorial includes tips and tricks for its use and advanced use cases. Forms Bridge use workflows to process form submission data before it is sent over the wire. A workflow is a chain of jobs that receive a form submission payload…
Forms Bridge 3.4.1 is now available. This patch includes new templates, a refactor of the Holded’s introspection API and minor fixes on the UI. Changes Download Forms Bridge plugin from WordPress.org.
Forms Bridge 3.4.0 is now available. This release includes new quotation templates for Odoo and Dolibarr, and new workflow jobs. Changes Download Forms Bridge plugin from WordPress.org.
In this tutorial we will explain how to bridge your WordPress forms to Odoo to setup a transactional form that creates product quotations. The resulting bridge will create a partner, and a new quotation linked to the former and with a product line with unit price and quantity. This tutorial assumes you have an Odoo…
Forms Bridge 3.3.5 is now available. This minor release includes new features: Next step on the plugin roadmap is to add support for transactional form templates for Odoo and Dolibarr. Download Forms Bridge plugin from WordPress.org.
Forms Bridge utilizes JSON Schemas to describe settings and perform data validations. An example of this use is the Workflow Jobs registration. This is the schema of a workflow job setting data: And this is an example of a valid workflow job setting data: To validate this settings on registration time Forms Bridge utilizes the…