Skip to content

Instantly share code, notes, and snippets.

View alexoak87's full-sized avatar

Alex Oak alexoak87

View GitHub Profile
@alexoak87
alexoak87 / jfb-call-hook.php
Created May 4, 2025 22:01 — forked from Crocoblock/jfb-call-hook.php
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'];