Is there a limit to the number of tags?

I was able to enter 297 tags out of my 500 tags.

But when I edit a listing, only the first 101 tags seem to be available. The image shows the list stopping at “classrooms” which is the 101st tag.

I believe this is why my import is failing on the tags. It is only importing the tags found in the first 101 tags.

Is there a way to increase this number or is 101 a hard limit on the number of tags the system can handle?

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

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