Columns for subcategory display

Hi I was kindly given the following code snippet for specifying my number of category images displayed, ie columns.

I need a snippet to do the same for the subcategory display please.

add_filter(
	'hivepress/v1/templates/listing_categories_view_page',
	function( $template ) {
		return hivepress()->helper->merge_trees(
			$template,
			[
				'blocks' => [
					'listing_categories' => [
						'columns' => 4,
					],
				],
			]
		);
	}
);

Hi,

Thanks for the request. Please clarify which display subcategories you mean, and we will try to provide a solution or workaround. The snippet you provided works for any page where categories or subcategories are displayed.

Thank you.

I just learnt the there is a difference between CSS and PHP snippets.

It works now thank you.