Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Created September 8, 2025 11:53
Show Gist options
  • Save propertyhive/213604e833e673749d080e4717b4f1ec to your computer and use it in GitHub Desktop.
Save propertyhive/213604e833e673749d080e4717b4f1ec to your computer and use it in GitHub Desktop.
Add office name to enquiry emails
add_filter( 'propertyhive_property_enquiry_property_output', 'customise_property_output_in_enquiry', 10, 2 );
function customise_property_output_in_enquiry( $output, $property_id )
{
$property = new PH_Property((int)$property_id);
$office_name = $property->office_name;
return 'Office: ' . $office_name . '\n' . $output;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment