Skip to content

Instantly share code, notes, and snippets.

@hivepress
Last active August 22, 2025 17:21
Show Gist options
  • Select an option

  • Save hivepress/847da5ecfe798084d43a232f791419c5 to your computer and use it in GitHub Desktop.

Select an option

Save hivepress/847da5ecfe798084d43a232f791419c5 to your computer and use it in GitHub Desktop.
Change the maximum number of images per listing #hivepress #listings
<?php
add_filter(
'hivepress/v1/models/listing',
function( $model ) {
$model['fields']['images']['max_files'] = 123;
return $model;
},
100
);
@Serranospc
Copy link

Copied exactly as described and generated fatal error. I'm not a programmer. What should I do to limit ads to a maximum of 3 images
fatal error
?

@hivepress
Copy link
Author

The code snippet seems to be ok, please try using the Code Snippets plugin for adding it, also please don't copy the first line <?php since it's pre-added by the Code Snippets plugin.

@Serranospc
Copy link

Serranospc commented Apr 29, 2022

Perfect!
Is it possible to include video url?

@hivepress
Copy link
Author

Sorry, it's not possible for the listing image gallery yet, but it's possible to add video URLs to the listing description (e.g. YouTube, Vimeo...) and they will be converted into a video player on the listing page. Also you can use the Embed attributes in the same way.

@28south-james
Copy link

Any way to have different limits depending on the listing package purchased?

@tejas2292
Copy link

image

Is it correct?? because its not working though i have tried for request

@hivepress
Copy link
Author

Please replace "listing" with "request" in the hook name then this snippet should work fine for requests.

Unfortunately there's no way to limit this per package in the current version.

@guizeras
Copy link

Work perfectly. Thanks !

@Odairdb
Copy link

Odairdb commented Aug 20, 2025

Hello colleagues... I tried the code below as suggested, but it didn't work for me... What has changed since 2022, given that we are now in August 2025 and I am using version 1.7.13 of HivePress (ListingHive). At first, I just want to limit the images to 3 per ad, even if it's free, and in the future, for paid ads, limit it to 10 or more. I look forward to your suggestions... Thank you!

@hivepress
Copy link
Author

The code snippet is still valid, please make sure that you changed 123 to a lower number and tested uploading more images than the set limit. If you want to monetize the image limit, you can consider the Memberships extension.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment