Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save propertyhive/5ca13c7fddbab05989509cf7b2d1b830 to your computer and use it in GitHub Desktop.
Save propertyhive/5ca13c7fddbab05989509cf7b2d1b830 to your computer and use it in GitHub Desktop.
Correct Rex commercial lettings availability
add_action( "propertyhive_property_imported_rex_json", 'correct_commercial_availabilities', 10, 2 );
function correct_commercial_availabilities($post_id, $property)
{
$department = get_post_meta( $post_id, '_department', TRUE );
$to_rent = get_post_meta( $post_id, '_to_rent', TRUE );
if ( $department == 'commercial' && $to_rent == 'yes' )
{
wp_suspend_cache_invalidation( true );
wp_defer_term_counting( true );
wp_defer_comment_counting( true );
$availability = isset($property['project_listing_status']) ? $property['project_listing_status'] : '';
if ( $availability == 'Available' )
{
wp_set_post_terms( $post_id, 6, 'availability' ); // CHANGE 6 TO BE YOUR 'TO LET' TERM ID
}
wp_suspend_cache_invalidation( false );
wp_defer_term_counting( false );
wp_defer_comment_counting( false );
}
}
// needed so we don't log a status change every time the above takes effect
add_filter( 'propertyhive_add_property_availability_change_note', 'disable_history_logging' );
function disable_history_logging( $disabled )
{
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment