Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Last active October 30, 2025 23:16
Show Gist options
  • Save propertyhive/1586fe59510210437a7424c31e3599cb to your computer and use it in GitHub Desktop.
Save propertyhive/1586fe59510210437a7424c31e3599cb to your computer and use it in GitHub Desktop.
Change Kato XML descriptions and order
add_filter( 'propertyhive_kato_xml_descriptions', 'change_kato_description_order', 10, 2 );
function change_kato_description_order( $descriptions, $import_id )
{
return array(
'specification_description',
'location',
'marketing_text_1',
'marketing_text_2',
'marketing_text_3',
'marketing_text_4',
'marketing_text_5',
'marketing_text_6',
'marketing_text_7',
'marketing_text_8',
'marketing_text_9',
'marketing_text_10',
'marketing_text_transport',
'fitted_comment',
'units',
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment