Send Bulk Emails with Gravity View

**ADD TO GRAVITY FORM** Here is the HTML added at the top of the form: <input id="selectall" type="checkbox"> Select all Emails Here is the sctipt used in the Jquery HTML Block: (copy text below starting and ending with the ‘script’ tag) /************************/ <script> jQuery(function ($) { jQuery("#selectall").click(function() { jQuery(".check_email").prop("checked", this.checked); }); jQuery(".selectedId").change(function() { var check … Read more

Add an attendance system using Gravity Forms and Gravity View

(This post assumes you already own and have installed both Gravity Forms and Gravityview plugins) This tutorial is an extension of this sign-up tutorial . The task is the following: Create a form that collects student or attendee information Generate the list of students or attendants that can be filtered by grade, class etc. Allow teachers or … Read more

Add an accordion to a Gravityview List View

Below is an example of adding an accordion to a Gravityview list. This sample is taken from a customized online school module that was created during the covid-19 school closures.  1  By adding some custom css, gravityview lists can be given accordion behavior. (This can be added through most WordPress themes, Apprearence Tabs, Custom CSS. … Read more

Gravityview [gvlogic] trick

Quick Tip: There are times when using the [ gvlogic] shortcode you need to have multiple conditions. Although, gravityview’s newer releases allow for [gvlogic] and [gvlogic2], I found this trick allows for infinite conditions: [gvlogic if=”target object” is=”some condition”] <div style=”display:none”> [else][/gvlogic] <p> Hello, World</p> </div> //make sure to end content with closing div By … Read more

Make your own sign-up form with Gravity Forms and Gravityview

(This post assumes you already own and have installed both Gravity Forms and Gravityview plugins) For sometime now, I’ve been looking for a way to replace third party signup apps such as Signup Genius and Volunteer Spot on my site. The task was the following: Create a form to generate the sign-up slots Generate the … Read more