Hello,
I’m using the following snippet in order to have messages appear as comments in WordPress.
add_filter(
'hivepress/v1/comment_types',
function( $comment_types ) {
$comment_types['message']['public'] = true;
return $comment_types;
}
);
Is there a way to see all messages related to each listing as a thread?
I’m using the theme and plugins to host a site for the hoidays where users in my area can post things needed and others can meet those needs by seeing listings and responding to the person who posted (vendor). Seeing all messages for a listing would be really helpful, as we have a small team that tracks each need (listing), and sometimes needs to help the people involved connect.
Thanks!
Justin