How to change number of column on listing category page?

The page is at example.com/listings where listing page is set to show category instead of listings

/* DOESN'T WORK */
add_filter(
	'hivepress/v1/templates/listings_category',
	function( $template ) {
		return hivepress()->helper->merge_trees(
			$template,
			[
				'blocks' => [
					'listings_category' => [
						'columns' => 4,
					],
				],
			]
		);
	}
);

Hi,

Please try to use a hook for: /listing_categories_view_pageand for listing_categories block.

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