Skip to content

Instantly share code, notes, and snippets.

@LaxusCroco
Last active October 20, 2025 15:05
Show Gist options
  • Select an option

  • Save LaxusCroco/74c8af958fe9d03a8b503c7ce3a5ff3a to your computer and use it in GitHub Desktop.

Select an option

Save LaxusCroco/74c8af958fe9d03a8b503c7ce3a5ff3a to your computer and use it in GitHub Desktop.
<?php
add_filter(
'jet-form-builder/preset-sanitize',
function ( $sanitize, \Jet_Form_Builder\Presets\Sources\Base_Source $source ) {
if ( jet_fb_live()->form_id == 2055 && is_a( $source, \Jet_Form_Builder\Presets\Sources\Preset_Source_Post::class ) ) {
return true;
}
return $sanitize;
}, 10, 2
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment