Hide title on listing view page

Hello,
Is it possible to hide listing title on listing view page? As I’m thinking to use display:none, but maybe there is better solution like unset so it wouldn’t even exist on inspecting element? As display:none is pretty bad solution, because anyone can unhide it in source code.

Please try this PHP snippet

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

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