-
Notifications
You must be signed in to change notification settings - Fork 0
3. Dashboard
Falko Joseph edited this page Mar 3, 2021
·
3 revisions
- A quick glance at all of your properties
- Ability to add additional information to your properties
- Real-time synchronization status + last updated indication
We've added some optional additional fields which you can add to a property. Please note that these fields are not synced with SweepBright, but they might be useful if a customer wants to add some additional information which is not available in SweepBright.
E.g. Phase 1, 20% sold, ...
get_field('custom_fields')['tag'];
Return: string
E.g. Modern, classic ...
get_field('custom_fields')['style'];
Return: string
E.g. Terraced, Detached ...
get_field('custom_fields')['type'];
Return: string
E.g. Spacious, sustainable and energy-efficient homes ...
get_field('custom_fields')['usp'];
Return: array
Example:
foreach (get_field('custom_fields')['usp'] as &$usp) {
echo $usp['usp_item'];
}