Skip to content

Instantly share code, notes, and snippets.

@propertyhive
propertyhive / gist:807823423db7dc481d40383adddeb150
Created February 12, 2025 10:28
Import different size image when importing from other Houzez site as to not get large/massive images
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;
}
add_action( 'propertyhive_after_single_property_summary', 'show_share_buttons', 50 );
function show_share_buttons()
{
echo do_shortcode('[addtoany]');
}
@propertyhive
propertyhive / snippet.php
Created January 29, 2025 13:21 — forked from g-maclean/snippet.php
PropertyHive - Reapit force use standard ID instead of alternateID
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'] );
}
}
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';
}
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;
}
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 );
}
@propertyhive
propertyhive / gist:272126ee2b70b486c44f0d7ed17bb0c0
Created January 21, 2025 14:18
Customise totals in Kato units table
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));
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 );
}
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;
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 != '' )
{