Skip to content

Instantly share code, notes, and snippets.

View haseebali's full-sized avatar

Haseeb Ali haseebali

  • pakistan
View GitHub Profile
@Crocoblock
Crocoblock / jfb-call-hook.php
Last active August 21, 2025 05:12
JetFormBuilder Call Hook action
<?php
add_action( 'jet-form-builder/custom-action/test-hook', function( $request, $action_handler ) {
//get value of field field1
$value = $request['field1'];
//or using jet_fb_context()->resolve_request()
$value = jet_fb_context()->resolve_request()['field1'];