Default can add no limit.
I want to restrict images maxim three images.
Can I do this implementetion.
Default can add no limit.
I want to restrict images maxim three images.
Can I do this implementetion.
hi, add this in functions.php
add_filter(
'hivepress/v1/models/listing',
function( $model ) {
$model['fields']['images']['max_files'] = 03;
return $model;
},
100
);
Thank you!
I can become it!!