Good day,
If I may suggest a small change to the code. in line 334 of bp-activity-subscription-digest.php
changing this:
$item_message .= "<br><span {$ass_email_css['item_content']}>" . ass_digest_filter( $item->content) . "</span>";
to:
$item_message .= "<br><span {$ass_email_css['item_content']}>" . apply_filter('digest_item_content',$item->content ) . "</span>";
and then removing
// standard wp filters to clean up things that might mess up email display - (maybe not necessary?)
function ass_digest_filter( $item ) {
$item = wptexturize( $item );
$item = convert_chars( $item );
return $item;
}
and replacing it with:
// standard wp filters to clean up things that might mess up email display - (maybe not necessary?)
add_filter('digest_item_content','wptexturize');
add_filter('digest_item_content','convert_chars');
personally I've had to add
add_filter('digest_item_content','stripslashes');
Not sure if this is something others had to do as well.
This allows to add other filters such as to limit the size of the activity posts length.
Thanks
http://wordpress.org/extend/plugins/buddypress-group-email-subscription/