Skip to content

Instantly share code, notes, and snippets.

@hivepress
Created February 20, 2023 22:34
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/3cde1ce685a9e867ef4f49634c264bef to your computer and use it in GitHub Desktop.
Save hivepress/3cde1ce685a9e867ef4f49634c264bef to your computer and use it in GitHub Desktop.
Require adding at least one price extra to listings #hivepress #marketplace
<?php
add_filter(
'hivepress/v1/models/listing/attributes',
function( $attributes ) {
if ( isset( $attributes['price_extras'] ) ) {
$attributes['price_extras']['edit_field']['required'] = true;
}
return $attributes;
},
1000
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment