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
Phu Dang 1Phu Dang 1 

Posting a Disclaimer in the New Case of Customer Communities

We use standard Customer Communities web page from Salesforce and would like to add a disclaimer to the New Case for Customer Communities.  Is there a visualforce page for this because I could not find it.  I know I could add the Disclaimer to the footer but we only want to add it for the new case only.  Please help!
ShashankShashank (Salesforce Developers) 
You can probably use a conditionally rendered visualforce page (http://cloudyworlds.blogspot.sg/2013/09/outputpanel-usage-in-visualforce-page.html) which renders only if the record is new, by using the standard controller method getId(). If Id exists, then the record is not new, so you can choose to not render it.