Tag: formidable forms
-
WordPress API returns HTML not JSON
Summary I found that in some cases the WordPress API was returning HTML not JSON. Inspection of the HTML showed that I was being redirected to the login page by Formidable Registration Plugin when basic authentication failed. Steps to Resolution The steps to resolution were, Disable all plugins Install Basic Auth plugin from https://github.com/WP-API/Basic-Auth…
-
Designing secure applications with Formidable Forms
I use Formidable Forms for all my web application development using WordPress. The time spent learning the framework is repaid (just) by the speed with which I can build new front ends. In the last year the documentation is improved greatly and the team is targeting enterprise developers. Formidable Forms is stateless and all information…
-
Understanding Formidable Forms and WordPress
I have been using Formidable Forms with WordPress on and off for about 3 years. I have a conventional SQL and web programming background and I have found understanding the Formidable framework difficult. Today I had the insight that Formidable “views” are really just HTML fragments that contain data fetched by a simple SQL statement working…
-
How to style HTML emails
Email clients such as Outlook and Gmail have their own ways of rendering HTML. Most importantly you have to use inline styles on every element and cannot link to an external stylesheet or have a stylesheet in the head. So rather than having a simple declaration in the head like, <head> <style> body {margin: 0;…
-
Extending the WordPress application framework with Formidable Forms
In my previous post I discussed how WordPress fulfils many of the needs of an application development framework but I noted that it did not support forms. I have chosen to implement this requirement with Formidable Forms (other forms plug-ins exist). This page is a work in progress and subscribe if you want to receive future updates.…
