This hook has been deprecated. Please use gform_confirmation_ui_settings instead.
Description
Use this filter to create a new form setting under the Properties tab. Useful when implementing a new setting that applies to the form rather than a specific field.
Usage
<?php
add_action("gform_confirmation_settings", "my_form_confirmation_settings", 10, 2);
?>
Parameters
- $position
- (integer) Specifies the position that the settings will be displayed. For a list of all available positions, search form_detail.php for "gform_confirmation_settings".
- $form_id
- (integer) The ID of the current form.
Examples
This hook functions identically to the gform_field_advanced_settings hook. The only difference is the location of where the custom setting is output. Reference this example for usage.
Source Code
This filter is located in form_detail.php