Created
July 28, 2025 08:51
-
-
Save propertyhive/c0d6b2f4e9d516fa3218fb11dd744c9d to your computer and use it in GitHub Desktop.
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_action( "houzez_property_feed_property_imported_resales_online", 'from_price_qualifier', 10, 4 ); | |
| function from_price_qualifier($post_id, $property, $import_id, $instance_id) | |
| { | |
| if ( (string)$property->price == (string)$property->price_to ) | |
| { | |
| update_post_meta($post_id, 'fave_property_price_prefix', 'From'); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment