How to edit the "Gallery" option under the Add Listing page

Hi,

Use code snippet plugin and add this:

add_filter(
    'hivepress/v1/models/listing',
    function( $model ) {
        // Update the description to only show the recommended image width size
        $model['fields']['images']['description'] = 'Recommended image width size: 1080px or 800px';
        return $model;
    },
    100
);

2 Likes