Making a comment system

Please try this PHP snippet but please note that it can require further customizations

add_filter(
	'hivepress/v1/post_types',
	function( $post_types ) {
		$post_types['listing']['supports'][] = 'comments';

		return $post_types;
	}
);

add_filter(
	'hivepress/v1/templates/listing_view_page',
	function( $template ) {
		return hivepress()->helper->merge_trees(
			$template,
			[
				'blocks' => [
					'page_content' => [
						'blocks' => [
							'listing_comments' => [
								'type'     => 'callback',
								'callback' => 'comments_template',
								'_order'   => 100,
							],
						],
					],
				],
			]
		);
	}
);
1 Like