How to get the total donations made by a user – Gravity Forms? [closed]
Answer came from a plugin. gravitywp-count.
Answer came from a plugin. gravitywp-count.
magnific popup + gravity form query string not passing
Submit a Gravity Form as other user [closed]
Populate email field is wp-signup.php
https://wordpress.org/plugins/maxicharts/ I included the input results with a shortcode in a html area, not sure if it works with that add-on but it should.
Gravity Forms Webhooks [closed]
Why does using conditional logic in gravity forms break the form when placed using php
The increment arrows are inherent in <input type=”number”>, your browser automatically adds them. When you’re setting up your form you just use the ‘number’ input rather than a ‘text’ input. So instead of <input type=”text” id=”field_id” name=”field_name” value=”” />, what you want to use is something akin to: <input type=”number” id=”field_id” name=”field_name” value=”” step=”1″/> You … Read more
According to this page about the form fields object, it looks like you’d need to do something like this: $my_id = ’37’; foreach($form[‘fields’] as $field){ if($field[‘id’] == $my_id){ $field[‘content’] = ‘This is a html-block’; } } where $my_id is the id of the field you are targeting
If your users uploading images are logged in, you can try this with Gravity View (its a premium plugin). Once the user uploads the image they will be able to see or edit contents of the form. If users uploading images are not logged in: Here is a guide that helps you this might be … Read more