Created
April 26, 2022 21:05
-
-
Save hivepress/27cfb8e3cc1fbd0b4e88176b449f7f30 to your computer and use it in GitHub Desktop.
Change the attributes position (order) on the listing page #hivepress #listings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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