Filter: bricks/webhook/timeout
Filter: bricks/webhook/timeout
Section titled “Filter: bricks/webhook/timeout”Allows you to modify the timeout duration (in seconds) for webhook requests triggered by the Form element.
Parameters
Section titled “Parameters”$timeout(int): The timeout duration in seconds. Default is15.
Example usage
Section titled “Example usage”add_filter( 'bricks/webhook/timeout', function( $timeout ) { // Increase timeout to 30 seconds return 30;} ); Was this page helpful?