Request page and List a service page

Hi I’m using Experthive everything works Correctly
I have a small issue Some of my vendors when they use mobile version
they can’t distinguish between Request page and List a Service Page
I want to add a pragraphe or a title to indicate theme where they are.
You know
These always stupid persons arround you , and you should take care about theme

Please try this PHP snippet

add_filter(
	'hivepress/v1/routes',
	function( $routes ) {
		if(isset($routes['listing_submit_details_page'])){
			$routes['listing_submit_details_page']['title'] = 'Add listing details';
		}
		
		if(isset($routes['request_submit_details_page'])){
			$routes['request_submit_details_page']['title'] = 'Add request details';
		}

		return $routes;
	},
	1000
);
2 Likes

Thank you so much
It works

1 Like

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