PragmaticMates/realia

Sending email doesn't work

Closed this issue · 2 comments

Method Realia_Query::get_property_agents returns array of IDs, but used as object $agent->ID

https://github.com/PragmaticMates/realia/blob/master/includes/post-types/class-realia-post-type-property.php

$agent = Realia_Query::get_property_agents( $post->ID );
if ( ! empty( $agent ) ) {
    $email = get_post_meta( $agent->ID, REALIA_AGENT_PREFIX . 'email', true );
    ...   
}

Yes, you are right. Thank you. It is fixed now.

Fixed