Remove text next to checkbox in the listing attributes

  1. we would also like to remove the text inside the “add details” page.

Please try this PHP snippet

add_filter(
	'hivepress/v1/models/listing/attributes',
	function( $attributes ) {
		if ( isset($attributes['your_attribute_field_name']) ) {
			$attributes['your_attribute_field_name']['search_field']['caption'] = '';
		}

		return $attributes;
	},
	1000
);

Hi, unfortunately the snippet didn’t work.

Sorry for inconvience. Unfortunately, there is no easy way to do it. As a possible solution, you could try to change the caption for the attribute to prevent the duplicated labels (there is a Caption field in the attribute settings if you selected Checkbox type for an attribute).

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