Caldera_Forms::get_slug_data() returns Array instead of value for "hidden" field
-
Since one of the updates in the last 1-2 days, Caldera_Forms::get_slug_data() returns an array instead of the value for hidden fields.
So I need this workaround at the moment to achieve the “old” behaviour:
$action = Caldera_Forms::get_slug_data(‘woo_coupon_action’, $form);
$action = is_array($action) ? $action[‘value’] : $action;Is this a bug for hidden fields?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Caldera_Forms::get_slug_data() returns Array instead of value for "hidden" field’ is closed to new replies.