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
);