Add minimun images on listings

Hello Please help… i need to put mandatory minimun images on new listings…

this code is not working for me:


<?php
add_filter(

'hivepress/v1/models/listing',

function( $model ) {

$model['fields']['images']['min_files'] = 123;

return $model;

},

100

);

The max images code is working:

<?php
add_filter(
'hivepress/v1/models/listing',
function( $model ) {
$model['fields']['images']['max_files'] = 123;

return $model;
},
100
);

Hi,

I see. Unfortunately, there is no simple PHP snippet here. If you are familiar with coding or have a developer, we recommend creating a custom validation using this hook hivepress/v1/forms/listing_update/errors, filtering errors and adding custom code.

​I hope this is helpful to you.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.