Update post’s custom fields after workflow step approved or rejected in gravity flow
Update post’s custom fields after workflow step approved or rejected in gravity flow
Update post’s custom fields after workflow step approved or rejected in gravity flow
Looks like I was using this class to do this: http://gravitywiz.com/rename-uploaded-files-for-gravity-form/ and added the filter in myself after line 207, ie. // replace merge tags $form = GFAPI::get_form( $entry[‘form_id’] ); $value = GFCommon::replace_variables( $value, $form, $entry, false, true, false, ‘text’ ); // MOD: add a filter here to hook into filename change $value = apply_filters(‘gravity_forms_upload_filename’, … Read more
the first step is to extract the value with this kind of code, does it work for you ? $xml = simplexml_load_string($result); $value = (string) $xml->response->results->result->zestimate->amount; var_export($value, FALSE); the next step is to put the value in the form. the Gravity Form is not free then we cannot test it and I only find that … Read more
gform_after_submission does not work on ajax enabled form
How to style a list item when the radio input button within that li is :checked
You can use something like below. Basically after form submission we get the data $entry extract the values we want (in the example $val1, $val2, $val3) then insert that data into the custom table with $wpdb: add_action(‘gform_after_submission’, ‘save_to_my_custom_table’, 10, 2); function save_to_my_custom_table($entry, $form) { global $wpdb; // update for your tablename (this assumes the table … Read more
You did ethically wrong but that is not illegal. https://www.gravityforms.com/terms-and-conditions/ Gravity Forms is licensed under the GNU general public license (http://www.gnu.org/licenses/gpl-3.0.txt). You have a lot of freedom with such tools.
Add (populate) multiple dynamic fields trough a url query
How to use third-party SendGrid Email Validation API in Gravity Forms?
Another way of phrasing it is to just MOVE the body. The page-id class is applied to the body, so: body.page-id-9399 #gform_wrapper_3 { background-color: #363c42; } Would have worked