Delete Price Section because I already have tiers

Please try this PHP snippet to hide the Price listing attribute

add_filter(
	'hivepress/v1/models/listing/attributes',
	function($attributes){
		if(isset($attributes['price'])){
			$attributes['price']['editable'] = false;
			$attributes['price']['display_areas'] = [];
		}
		
		return $attributes;
	},
	1000
);
2 Likes