Skip to content

Instantly share code, notes, and snippets.

@LaxusCroco
Created February 23, 2024 15:53
Show Gist options
  • Save LaxusCroco/406bc63a36310fee4e4a23e5d4f35828 to your computer and use it in GitHub Desktop.
Save LaxusCroco/406bc63a36310fee4e4a23e5d4f35828 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'jet-form-builder/render/media-field/attributes', function( $attrs ) {
if ( false === strpos( $attrs['class'], 'capture-only' ) ) {
return $attrs;
}
$attrs['capture'] = 'environment';
return $attrs;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment