I would like to ask you a question!

I want to hide the area circled in red. How can I do this?

Please try this PHP snippet

add_filter( 
	'hivepress/v1/templates/vendor_view_block', 
	function ( $template ) {
		return hivepress()->helper->merge_trees(
			$template,
			[
				'blocks' => [
					'message_send_link'  => [
						'type'   => 'content',
					],
				],
			]
		);
	},
	1000
);

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