Add region title and description on frontend, like a category header

Hi again ! :slight_smile:

I would like to add region and description on frontend, like a category header page.
I saw this topic :
Add the region title and description on frontend - General / Geolocation - HivePress Community
Is the same request, but i don鈥檛 see the entire solution.

My goal :


Add this header to the region page

For example : this page : Provence-Alpes-C么te d鈥橝zur Archives - Annuaire Drone

How can i modify this page ? I know that the page-header.php in the rentalhive theme is use for the category header, but i don鈥檛 know how to apply it on the region page.

I know that with this snippet, i can change the title :

add_filter(
	'hivepress/v1/templates/page',
	function( $args ) {
		if ( is_tax( 'hp_listing_region' ) ) {
			$region = get_queried_object();

			$args['context']['page_title'] = 'Region: ' . $region->name;
		}

		return $args;
	},
	1000
);

but it鈥檚 not the solution for me.

Thank you in advance !

Hi,

This would require code customizations, please try adding custom content to the header section via the hivetheme/v1/areas/site_hero filter hook. You can check is_tax('hp_listing_region') and output custom HTML with the title and description. Here鈥檚 a sample function from the default ListingHive theme listinghive/includes/components/class-theme.php at master 路 hivepress/listinghive 路 GitHub

Hope this helps