Hi everybody,
I want to add the text: “Provider´s Country:” before the country on the listing block:
I tried:
add_filter(
'hivepress/v1/models/listing/fields',
function( $fields, $model ) {
if ( isset( $fields['location'] ) ) {
$fields['location']['display_template'] = '<i class="hp-icon fas fa-user"></i> %value% / custom text here';
}
return $fields;
},
1000,
2
);
but didnt work.