Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Searching for the instance of global variable $Label in salesforce

My code in gobal footer component -

   <div id="copyright">
            &copy; {!$Label.copyright}
          </div>

It is displaying in page"© Copyright 2012 "

I am new in Salesforce. I just want to modified text with

"© Copyright 2013 "

In place of 2012 I want to use 2013...

What I have tried ??

  1. Checked custom label
  2. $Label is global variable search for copyright...

Please help me if I missed some basic part to check !!

Thanks!!

like image 410
Javascript Coder Avatar asked Oct 03 '22 21:10

Javascript Coder


1 Answers

From Need to modified variable value in visualforce/apex/salesforce by rao:

If you go to setup--> create--> custom labels you should see a label by name copyright click on it and the value should say "copyright 2012...." change the value there to 2013.

Hope this helps

UPDATE:

check this out if you are looking here: enter image description here

enter image description here

One final check /suggestion check your view and try to see if it is showing all the custom labels and not filtered.

enter image description here

This is the solution !! Thanks !!

like image 85
Javascript Coder Avatar answered Oct 12 '22 11:10

Javascript Coder