Skip to content

Instantly share code, notes, and snippets.

@hivepress
Created April 26, 2022 21:05
Show Gist options
  • Save hivepress/27cfb8e3cc1fbd0b4e88176b449f7f30 to your computer and use it in GitHub Desktop.
Save hivepress/27cfb8e3cc1fbd0b4e88176b449f7f30 to your computer and use it in GitHub Desktop.
Change the attributes position (order) on the listing page #hivepress #listings
<?php
add_filter(
'hivepress/v1/templates/listing_view_page',
function( $template ) {
return hivepress()->helper->merge_trees(
$template,
[
'blocks' => [
'listing_attributes_secondary' => [
'_order' => 123,
],
],
]
);
},
1000
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment