Hi Mike,
Currently the best way to do this is by hooking into the filter bbpnns_digest_format_forum_posts
, which takes 2 parameters:
- (string) $body – The body of the digest message for the current user. Needs to be returned within the filter function.
- (associative array) $forum_posts – The list of topics and replies in the user’s digest. The format is:
[$forum_id => stdClass( 'ID' => $post_id, 'post_type' => $topic_or_reply, 'user_id' => $user_id, 'notification_id' => $int, forum_id => $forum_id ) ]
You can use that data to build your digest.
I’m planning on adding summary/detailed digest options on a per-user basis in a future release, as well as the ability to override the digest templates inside your theme. However, I don’t see this happening before the end of the month due to other priorities. Also, for more complex changes you’ll still need to hook into the filter.
Cheers,
Vinny