Change request display columns in dashboard

Hi,
I want to display to columns of requests like this:

But on requests of custommer also:

I want to show two columns of requests on second picture.

For the first one I did:

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

But how I could do for the second one?

Regards

Hi,

Sorry, there’s no simple code snippet for this, it would require a custom implementation. If customizations beyond the available features are required for your site, please consider hiring someone for custom work: Fiverr - Freelance Services Marketplace

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