Skip to content

Instantly share code, notes, and snippets.

@hivepress
Last active June 18, 2022 18:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hivepress/7117c5caa1907f4b0d4cc2acd60c9969 to your computer and use it in GitHub Desktop.
Save hivepress/7117c5caa1907f4b0d4cc2acd60c9969 to your computer and use it in GitHub Desktop.
Hide the budget field from the request forms #hivepress #requests
<?php
add_filter(
'hivepress/v1/models/request/attributes',
function( $attributes ) {
if ( isset( $attributes['budget'] ) ) {
$attributes['budget']['editable'] = false;
$attributes['budget']['filterable'] = false;
$attributes['budget']['edit_field']['required'] = false;
}
return $attributes;
},
1000
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment