How do I change the display position of an attribute on the listing view page?

How do I change the display position of an attribute on the listing view page?
I wanted to bring the attention_point(注意点) to the bottom but couldn’t.
I wrote the following but it didn’t respond.

<?php
add_filter(
	'hivepress/v1/templates/listing_view_page',
	function( $template ) {
		return hivepress()->helper->merge_trees(
			$template,
			[
				'blocks' => [
					'attention_point' => [
						'_order' => 123,
					],
				],
			]
		);
	},
	1000
);

Hi,

Please check this topic Change order of things on Listing view page

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