Created
September 8, 2025 11:53
-
-
Save propertyhive/213604e833e673749d080e4717b4f1ec to your computer and use it in GitHub Desktop.
Add office name to enquiry emails
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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