Change the Order of the Listing topics: Location, Rating etc

I am nearly done, is there any possibility to change the Order of the Listings:
e.g. Ratings directly under the Offer etc.?

If possible send more details about this issue - if you mean changing the order of the elements within the listing card, it is possible but requires customizations Customizing Templates I HivePress Developer Docs - YouTube

Hi Yevhen,
so, what I would like to change is the Order within the listing. At the moment the Rating is under the Location (here Lilienthal). What I would like to do is to put the Rating always under the Name of the Experience (in this Exmaple Sup Tour on the Wümme) see Screenshot. This means, that the rating shall always be under the Name of the Experience. How would htis work?
Thanks.

Please try this PHP snippet

add_filter( 
	'hivepress/v1/templates/listing_view_block', 
	function ($template){
		return hivepress()->helper->merge_trees(
				$template,
				[
					'blocks' => [
						'listing_rating' => [
							'_order' => '3',
						],
					],
				]
			);
	},
	1000
);

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