DescriptionUsageExamplesPlacementSource Code
Description
The 「gform_hipchat_verify_ssl」 filter in the Gravity Forms HipChat Add-On allows the verification of HipChat SSL to be enabled or disabled.
Usage
add_filter( 'gform_hipchat_verify_ssl', 'your_function_name', 10, 1 );
## Parameters
– **$verify_ssl** bool
True or False to verify SSL.
Examples
add_filter( 'gform_hipchat_verify_ssl', 'set_ssl', 10, 1 );
function set_ssl( $verify_ssl ){
return false;
}
Placement
This code should be placed in the functions.php file of your active theme.
Source Code
This filter is located in GFHipChat::initialize_api() in gravityformshipchat/class-gf-hipchat.php.