Move vendor profile towards the top

Hi All,

How would I move the profile above the Price?
It should be placed above Price and all the price tiers - ideally first on the right side of the page.

Thank you!

Good day. Use this snippet code below to move the vendor block to the top.

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

Thanks so much for this! Highly appreciate it :raised_hands:

Thanks this works

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