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
NickSmyrnosNickSmyrnos 

Social Contacts and Chatter details in same Record header

I am trying to update a Visualforce page that we use to override the Contact Detail page to show Chatter data as well as Social Contacts.  Chatter seems to be fairly easy to enable from the apex:detail tag.  Social Contacts seems to only be available via the <social:profileViewer> tag.  When I add this tag, I end up with a second header with the Contact name underneath the original header with the Contact name and Chatter info.

 

Is there a way to merge this data into a single header like native pages do?

 

 

VF snippet:

<apex:page id="MyPage" standardController="contact" name="ContactBusinessUser" extensions="Contact_BusinessUserController" >
<social:profileViewer entityId="{!contact.id}"/>

<apex:detail subject="{!$CurrentPage.parameters.id}" relatedList="true" inlineEdit="true" onComplete="EnableDisableButtons()" id="Contact_BusinessUser" showChatter="true"/>

 

sugsug

Hi, I am facing the same issue.Did you solve it?