Skip to content

Instantly share code, notes, and snippets.

@cyberjus
Created July 7, 2014 21:23
Show Gist options
  • Save cyberjus/1ed5f21e05524831fb98 to your computer and use it in GitHub Desktop.
Save cyberjus/1ed5f21e05524831fb98 to your computer and use it in GitHub Desktop.
Chatterless Community Pages Work Around
<apex:page standardController="Case">
<apex:outputPanel rendered="{!$Profile.Name != 'Community User'}" >
<apex:detail subject="{!Case.Id}" inlineEdit="true" showChatter="true" />
</apex:outputPanel>
<apex:outputPanel rendered="{!$Profile.Name = 'Community User'}" >
<apex:detail subject="{!Case.Id}" inlineEdit="true" showChatter="false" />
</apex:outputPanel>
</apex:page>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment