Thanks Steve,
Still need a bit of help. I am trying to add the address below the title on the single property page. I have tried amending the code you sent before to add to search results, although the following code doesn’t wo[rk (I’m not great with php as i’m sure you’ve noticed!)..
add_action( ‘propertyhive_after_single_property_loop_item_title’, ‘function_to_add_address’, 1 );
function function_to_add_address()
{
global $property;
echo ‘<p class=”add-t”>’. esc_html($property->get_formatted_full_address());
}