Hi, I found the php file (class-settings-container.php) and tried changing the “bedroom” and “bathroom” fields to “es_type” and “tenure” respectively and it seems to work, see below:
'listing_meta_icons' => array(
'default_value' => array(
array(
'enabled' => 1,
'field' => 'es_type',
'icon' => '{plugin_url}public/img/bed.svg',
'icon_color' => '#DADADA',
),
array(
'enabled' => 1,
'field' => 'tenure',
'icon' => '{plugin_url}public/img/bathroom.svg',
'icon_color' => '#DADADA',
),
array(
'enabled' => 1,
'field' => 'area',
'icon' => '{plugin_url}public/img/area.svg',
'icon_color' => '#DADADA',
),
),
),
I would also like to change es_categories, es_types and es_address fields but I could not locate them in the file and would appreciate if someone can shed some lights, see below screenshot of the said fields in the listing property card:
https://drive.google.com/file/d/1yqJTRXNUacTSArDktU7sOOiP7tiluHOI/view?usp=drive_link
Thanks,