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
Lewis HowelLewis Howel 

add VF component to lightning home pages

Hi all,

I am more admin than developer. I have created a broadcast group called Latest Updates, as a way of advising all users on teh smaller evolutions within our org.

I would like to show the feed from this group on everyone's home page.

I have created a VF Page that shows the feed, but it is appearing as classic. Can anyone help with how to make it lightining? I asked SF Support, and they said I can just create a VF Component, and add this to teh page via app builder. So, I have created the component with the code below:

<apex:component >

<apex:includeLightning />
                  
    <h1>Latest Updates</h1>
          
  <chatter:feed entityid="0F93N0000004D4NSAU"/>
  
</apex:component>

However, when I go to to edit page on home screen, the custom component is not available to select? So I can't check if it works or not.

Can anyone help at all? (Or suggest a better way to show updates on home page? I did think about creating a custom object to do it, but just didn't seem right)