This file contains 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( 'houzez_property_feed_wp_rest_api_houzez_media_source_url', 'different_source_url', 10, 2); | |
function different_source_url($url, $attachment) | |
{ | |
if ( isset($attachment['media_details']['sizes']['1536x1536']['source_url']) && !empty($attachment['media_details']['sizes']['1536x1536']['source_url']) ) | |
{ | |
return $attachment['media_details']['sizes']['1536x1536']['source_url']; | |
} | |
return $url; | |
} |
This file contains 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_action( 'propertyhive_after_single_property_summary', 'show_share_buttons', 50 ); | |
function show_share_buttons() | |
{ | |
echo do_shortcode('[addtoany]'); | |
} |
This file contains 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_action( "propertyhive_property_imported_reapit_foundations_json", 'force_main_id_import', 10, 2 ); | |
function force_main_id_import( $post_id, $property ) | |
{ | |
if ( isset($property['id']) && !empty($property['id']) ) | |
{ | |
update_post_meta( $post_id, '_reference_number', $property['id'] ); | |
} | |
} |
This file contains 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_action( "propertyhive_property_imported_vebra_api_xml", "custom_flooded_alto_code", 10, 2 ); | |
function custom_flooded_alto_code($post_id, $property) | |
{ | |
$flooded_in_last_five_years = ''; | |
if ( isset( $property->features->flooding_risks->flooded_within_last_5_years ) ) | |
{ | |
if ( (string)$property->features->flooding_risks->flooded_within_last_5_years === 'true' ) | |
{ | |
$flooded_in_last_five_years = 'yes'; | |
} |
This file contains 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( 'ph_rtdf_send_request_data', 'set_rtdf_epc_rating', 10, 2 ); | |
function set_rtdf_epc_rating( $request_data, $post_id ) | |
{ | |
$epc_rating = get_post_meta( $post_id, '_epc_rating', TRUE ); | |
if ( $epc_rating != '' ) | |
{ | |
$request_data['property']['epc_information'] = array(); | |
$request_data['property']['epc_information']['current_energy_rating'] = $epc_rating; | |
} | |
This file contains 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_action( "houzez_property_feed_property_imported_apex27", 'import_outside_spaces', 10, 3 ); | |
function import_outside_spaces($post_id, $property, $import_id) | |
{ | |
if ( isset($property->OutsideSpaces->Feature) && !empty($property->OutsideSpaces->Feature) ) | |
{ | |
$outside_spaces = array(); | |
foreach ( $property->OutsideSpaces->Feature as $feature ) | |
{ | |
$outside_spaces[] = str_replace( "Outside Space - ", "", (string)$feature ); | |
} |
This file contains 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_import_agentsinsight_units_description_table_total_data_columns', 'custom_totals_area', 10, 3); | |
function custom_totals_area( $total_data_columns, $post_id, $property ) | |
{ | |
if ( isset($total_data_columns['sqft']) && isset($property->size_to) && (string)$property->size_to != '' ) | |
{ | |
$total_data_columns['sqft'] = str_replace(".00", "", number_format((string)$property->size_to, 2)); | |
} | |
if ( isset($total_data_columns['sqm']) && isset($property->size_to) && (string)$property->size_to != '' ) | |
{ | |
$total_data_columns['sqm'] = str_replace(".00", "", number_format((string)$property->size_to * 0.09290304, 2)); |
This file contains 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_action( "houzez_property_feed_property_imported", 'clean_sizes', 10, 3 ); | |
function clean_sizes( $post_id, $property, $import_id ) | |
{ | |
// Clean the 'fave_property_size' meta key | |
$size = get_post_meta( $post_id, 'fave_property_size', true ); | |
if ( strpos( $size, '.00' ) !== false ) { | |
$cleaned_size = rtrim( $size, '.00' ); // Remove '.00' from the size | |
update_post_meta( $post_id, 'fave_property_size', $cleaned_size ); | |
} |
This file contains 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('houzez_property_feed_export_kyero_property_data', function ($property_xml, $post_id, $export_id) | |
{ | |
// Get the Italian description for the property (replace with your logic). | |
$italian_desc = get_post_meta($post_id, 'description_it', true); | |
if (!empty($italian_desc)) | |
{ | |
// Add the Italian description as a new child node within <desc>. | |
$property_xml->desc->addChild('it', htmlspecialchars($italian_desc, ENT_QUOTES | ENT_XML1, 'UTF-8')); | |
} | |
return $property_xml; |
This file contains 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_action( "houzez_property_feed_property_imported_alto", 'import_house_number', 10, 3 ); | |
function import_house_number($post_id, $property, $import_id) | |
{ | |
$address_parts = array(); | |
if ( isset($property->address->name) && (string)$property->address->name != '' ) | |
{ | |
$address_parts[] = (string)$property->address->name; | |
} | |
if ( isset($property->address->street) && (string)$property->address->street != '' ) | |
{ |