Display listings on ExpertHive with the same appearance as TaskHive

Hi there,

Is it possible to display the listings on ExpertHive in the same way that TaskHive or ListingHive does? This mean, I’d like to show the service with the service image first and the seller’s name below, instead of only showing the profile picture of the vendor as TaskHive does.

Many thanks in advance

Please try this PHP snippet

add_filter(
	'hivepress/v1/templates/listing_view_block/blocks',
	function( $blocks, $template ) {
		return hivepress()->helper->merge_trees(
			[ 'blocks' => $blocks ],
			[
				'blocks' => [
					'listing_image' => [
						'path' => 'listing/view/block/listing-image',
					],
				],
			]
		)['blocks'];
	},
	1000,
	2
);

Also please try to add this CSS snippet

.hp-listing--view-block .hp-listing__image img{
	border-radius: 0;
}

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