How to limit the upload to one video per ad?

Hello to all the community

How to limit the upload to one video per ad in Hivepress without altering the number of photos?
Thank you all

I tried this code but it doesn’t work.
Always the number of photos (5) which has priority.
Thanks

<?php
add_filter(
	'hivepress/v1/models/listing',
	function( $model ) {
		$model['fields']['videos']['max_files'] = 1;
		return $model;
	},
	100
);

Sorry, there’s no simple code snippet for this, this would probably require using the hivepress/v1/forms/listing_update form, then counting all the uploads of video formats and returning an error, but this would not prevent the uploading - it would prevent the form from being submitted.

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