How to make the file upload optional and add description

I am attempting to setup my site to enable users to be able to sell free-lance consulting services as well as sell digital guides/downloads. How do I change the “File” field to be optional as well as add a description so that users know to upload a file if that is what they’re looking to sell?

After the purchase is completed, will the file be immediately able to be downloaded by the user?

Hi,

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

add_filter(
	'hivepress/v1/models/listing/attributes',
	function( $attributes ) {
		if ( isset( $attributes['attachments'] ) ) {
			$attributes['attachments']['edit_field']['required'] = false;
			$attributes['attachments']['edit_field']['description'] = 'custom text here';
		}
 
		return $attributes;
	},
	1000
);

Yes, after purchase, the file should be immediately available for download. Let us know if it is not.

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