Hi,
to follow the GDPR we need to place a field for copyright description under the images at the page view.
Something like this snippet:
add_filter(
'hivepress/v1/templates/listing_view_page',
function( $template ) {
return hivepress()->helper->merge_trees(
$template,
[
'blocks' => [
'listing_attributes_secondary' => [
'_order' => 11,
],
],
]
);
},
1000
);
But reorder only certain attributes under the image box.
How to?
Thnx!