How to place single atttribute under the image

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!

Hi,

Unfortunately, there’s no such feature, it would require a custom implementation. If customizations are required for your site, please try customizing it using the collection of code snippets Search · user:hivepress · GitHub and other developer resources, or consider hiring someone for custom work https://fvrr.co/32e7LvY

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