Searching Jet Engine Custom Meta Storage fields
How to search within custom table fields in Jet Engine Post Types

Last updated
add_action(
'asp_it_args',
function ($args) {
// Add the fields to this array
$jet_custom_fields = array(
'jet_meta_field1',
'jet_meta_field2',
);
// --------------------------------------------
// --- DO NOT CHANGE ANYTHING BELOW
if( is_array($args['index_customfields']) ) {
$args['index_customfields'] = array_merge(
$args['index_customfields'],
$jet_custom_fields
);
} else {
$jet_custom_fields = implode('|', $jet_custom_fields);
$args['index_customfields'] =
$args['index_customfields'] == '' ?
$jet_custom_fields :
$args['index_customfields'] . '|' . $jet_custom_fields;
}
return $args;
},
10,
1
);