Is there a limit to the number of tags?

Thank you for waiting.

Please try this PHP code snippet to increase showing tag options to 500 per one-time.

add_filter(
	'hivepress/v1/models/listing/attributes',
	function($attributes){
		if(isset($attributes['tags'])){
			$attributes['tags']['edit_field']['option_args']['number'] = 500;
		}
		
		return $attributes;
	},
	1000
);
1 Like