function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Justin LJustin L 

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:
User-added image

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.