Created
March 27, 2025 13:42
-
-
Save propertyhive/5ca13c7fddbab05989509cf7b2d1b830 to your computer and use it in GitHub Desktop.
Correct Rex commercial lettings availability
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_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