jamesbAtPK
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Debug messages from tribe-events.min.jsI gotta hop on the annoyed bandwagon here. Like, why are you guys logging this stuff anyway? What benefit is it to you to log this stuff on other peoples production sites?
My mind is boggled trying to understand why this is a thing.
@tribecari are you able to provide Tribe’s reasoning here?
Forum: Plugins
In reply to: [Infusionsoft WordPress Developers Plugin] Update a Custom FieldI was actually able to figure this out. Not sure if it is “technically” the correct way, but it does work.
$contact_service = new Infusionsoft_ContactService(); //this will return the same $contact_id that was sent on success and a 0 (or error out) on failure. $contact = $contact_service->update( $contact_id, array('_FieldName' => $new_value) );I have the same issue and would love this feature to be implemented.
The plugin is fantastic, and this would make it fantastic-er.
Thanks for all the hard work!
I can confirm that this is still an issue with the latest version of Gravity Forms. I am having the exact same issue and I am going crazy.
add_filter("gform_pre_render_6", 'populate_checkbox'); function populate_checkbox($form){ foreach($form["fields"] as &$field){ if($field["id"] == 15){ foreach ( $field['choices'] as $key => $value){ if($key == 0){ $field['choices'][$key]['isSelected'] = 1; print_r($field['choices'][$key]['text']); print_r($field['choices'][$key]['isSelected']); } if($key == 1){ $field['choices'][$key] = array( 'text' => $name, 'value' => $val, 'isSelected' => '1' ); } } print_r($field['choices']); } } return $form; }The strange thing is that even directly after setting the value, the value does not change, almost like it is protected or something. I can see the print_r values but nothing I do can change the “isSelected” value.
I believe the only way currently to dynamically select a checkbox is to actually create the checkboxes dynamically rather than creating them in the form creator. This page has a code snippet which allows a developer to do that. This is not ideal, but better than hacking the core.
Forum: Plugins
In reply to: [WP Offload SES Lite] Amazon API Keys are not valid@rick You are a my hero for the day!
I kept trying to get my keys from the IAM User.
I followed your link and created the API key there and everything worked.