Submit Request Directly from Listing Page

  1. Please try this CSS snippet to make the Send Request button in full width but please note that it can require further customization
.hp-template--listing-view-page .hp-vendor__action--request{
	width: 100%;
}
  1. Please try this PHP snippet to move the Write a Review button but please note that it can require further customization
add_filter(
	'hivepress/v1/templates/listing_view_page',
	function( $template ) {
		return hivepress()->helper->merge_trees(
			$template,
			[
				'blocks' => [
					
					'page_sidebar' => [
						'blocks' => [
							'review_submit_link'  => [
								'type'   => 'part',
								'path'   => 'listing/view/page/review-submit-link',
								'_order' => 1000,
							],	
						],
					],
					
					'listing_actions_primary' => [
						'blocks' => [
							'review_submit_link' => [
								'type' => 'content',
							],	
						],
					],
				],
			]
		);
	},
	1000
);
  1. If you mean hide Reply Listing button only on the single listing page then please try this CSS snippet
.hp-template--listing-view-page .hp-listing__action--message{
	display: none;
}