Caldera Forms Manual formula

The presumptions are the capacity of the car is constant (ie, 4) and the total number of people booking the trip is entered in a single number field. Add a calculation field and create a manual formula based on the total number of people booking the trip. The formula would be: ceil(%total_people%/4) – where “total_people” … Read more

Forms cut off when on mobile

That’s a Blackbaud form and I’ve generally had a bit of trouble with them working on mobile and getting styled just right. Glad to see they’ve moved away from using iFrames at least. Anyway, when I check the developer tools there is an element ID’d as #bbox-root. The CSS for that element has a width … Read more

how do I hide or encrypt query strings for gravity forms

I was unable to find a way to reasonably and securely accomplish this with Gravity Forms’ built-in features and the selection of AddOns currently available. So I have recently begun work on the Gravity Forms Population Link AddOn to provide more pre-population/prefill options and functionality. Among other things, it includes Encoding pre-populated values into a … Read more

AMP and Paypal form CORS issue

Existing forms with the post method can be problematic to adapt to AMP especially when they are pointing to an external domain. There are two issues: Forms in AMP with the post action are expected to be requesting JSON data to display in the form without causing a page navigation. When page navigation is desired, … Read more

How do I implement form handling when form is custom HTML?

Forms can handle both the front end and back end. If you don’t code the forms correctly, there can be some huge security issues that will arise. With what you are talking about, you will have to use a WordPress hook something like this: function your_function() { //your form here } add_action( ‘wp_footer’, ‘your_function’ ); … Read more