-
- Changing the default sync timeline
- Google Analytics custom events
- Using Dynamic Property Info with Rent Fetch
- Floor plan display settings
- Properties display settings
- Customize taxonomy labels
- How to add a custom specials banner on floor plans
- How to fade out unavailable floor plans
- How to add a 'rented' banner on unavailable Floor Plans or Properties
- SEOPress dynamic variables
- RentFetch CSS styling and theming
Menu
-
- Changing the default sync timeline
- Google Analytics custom events
- Using Dynamic Property Info with Rent Fetch
- Floor plan display settings
- Properties display settings
- Customize taxonomy labels
- How to add a custom specials banner on floor plans
- How to fade out unavailable floor plans
- How to add a 'rented' banner on unavailable Floor Plans or Properties
- SEOPress dynamic variables
- RentFetch CSS styling and theming
Changing the default sync timeline
Last updated: March 18, 2026
Some clients may wish to update their pricing more often than the default, which is 24 hours. Particularly on smaller sites, this doesn’t have much of an impact. On large sites with hundreds of properties, making the updates happen too often can result in clashes between different sets of updates that are happening in overlapping time frames, or can result in performance issues.
Here’s a snippet that can be dropped into the functions.php file to change the default sync timeline to four hours instead of 24.
function rentfetch_modify_sync_timeline( $seconds ) {
$hours = 4;
return $hours * HOUR_IN_SECONDS;
}
add_filter( ‘rentfetch_sync_timeline’, ‘rentfetch_modify_sync_timeline’ );