More image formats for listings?

Hi, is it possible to configure listinghive to accept .webp, .jpeg and other image formats?

Hi,
Please try this PHP snippet (How to add custom code snippets - HivePress Help Center):

add_filter( 
 'hivepress/v1/models/listing', 
 function( $model ) { 
  $model['fields']['images']['formats'][] = 'webp';
  return $model; 
 }, 
 1000 
);

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