You need to sign in to do that
Don't have an account?
Removing Chatter action items and filter/sort bar in Visualforce
I'm trying to create a sidebar item in Visualforce that will display the most recent items posted to a specific Chatter group. I have the feed working, but the page is showing the filter/sort bar and action items for the Chatter feed. Is there a way I can just get the feed item itself without the extras?
Example:

Code:
Example:
Code:
<apex:page showHeader="false" sidebar="false" standardStylesheets="false"> <html> <head> <style> body{ background-color: #FFB600; font-family: Arial, Helvetica, sans-serif; font-size: 12px; margin-left: 5px; margin-right: 5px; } .alignleft { text-align: left; } </style> </head> <h3>Chatter Feed</h3> <body> <chatter:feed entityId="ChatterGroupID" rendered="true" showPublisher="false"/> </body> </html> </apex:page>Thank you, I searched on here and via Google and didn't see anything that addressed this situation.