As a work around I had to make the IMAGES on the blog post itself to be NOT clickable…
(not a real solution)
That’s about the best thing to do at the moment.
It’s taking the blog post and displaying it in its entirety, with typical formatting from the “the_content” filter.
You can put your own filters on “bp_get_post_content” to get the desired results.
Thanx John,
I was wondering if you know where I can tweak those filters. I did a search on the Codex, but I was unsuccessful .. I also browsed through my files and still no luck!
Thankx!
Ok.. I think I found it.
bp-activity-sitewide-feed.php
Your best bet is to make a custom functions to put in wp-plugins/bp-custom.php, to hook into bp_get_post_content and alter the results.
Something like…
function your_custom_post_content( $post_content ) {
// Change the line below to do your custom magic
$new_post_content = $post_content;
return $new_post_content;
}
add_filter( 'bp_get_post_content', 'your_custom_post_content' );
In this line…
$new_post_content = $post_content;
…you will want to figure out how you want to trim out the extra mark-up you don’t need.
This could also be done with some custom kses filtering, but I think this way is the easiest way to make sure you’re not changing anything else in the process and are only filtering and affecting this one area.