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
Anupama SamantroyAnupama Samantroy 

$Label.Site - List of standard site labels

Hi,

In one my site pages some has used the site label user_information. But when i checked the salesforce list of site labels I did not fine this one neither there is custom label of this name. Similalry below custom labels are being used in the page but I can't find the documentation for the same.
{!$Label.site.user_information}
{!$Label.site.address_information}
{!$Label.site.contact_information}

Any help is appreciated.

Thanks
Anupama
Anupama SamantroyAnupama Samantroy
Hi Amit,

I already checked both these links but the custom labels I listed are not present in the documentation.

Thanks
Anupama
SandhyaSandhya (Salesforce Developers) 
Hi Anupama,

As you said these are custom labels created by the user so you don't find in the standard list.

You can use below code in Visualforce page and see the output.
<apex:page>
   <apex:pageMessage severity="info" 
   strength="1" 
   summary="{!$Label.Site.User_Information}" 
   />
</apex:page>

Please let us know if this helps you.

Thanks and Regards
sandhya


 
Anupama SamantroyAnupama Samantroy
No Sandhya,

These are not my custom labels. 
I Suggest you please print those  custom labels in your sandbox and let me know if it is showing the values

Thanks
Anupama
SandhyaSandhya (Salesforce Developers) 
Hi Anupama,

Sorry, I am not at work.When I am available, I will let you know.Did you print this?
 
<apex:page>
   <apex:pageMessage severity="info" 
   strength="1" 
   summary="{!$Label.Site.User_Information}" 
   />
</apex:page>



Thanks and Regards 
sandhya