Hi, Can someone help me to locate the code for recent sitewide posts? I would like to show post except or content from all the recent posts instead of simply listing the post title and author. appreciate your help. thanks
hi
Have a look at buddypress/bp-blogs/bp-blogs-widgets.php,you will see the code for recent sitewide posts there.
and here is what you need to do.
on line 44-46 you will see something like this
<?php if ( !$counter ) : ?>
<div class="item-content"><?php echo bp_create_excerpt($post->post_content) ?></div>
<?php endif; ?>
Change this to
`<div class=”item-content”><?php echo bp_create_excerpt($post->post_content) ?></div>’
Hopefully,It will help.
Another way,copy the widget code,modify it and create your own widget to preserve in future updates.
regards
Brajesh
Thank you Brajesh. However it appears cluttered due to images in post. How to exclude images from showing up ?