Search code examples
salesforceglobal-variablesapex-codevisualforce

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!!


Solution

  • 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 !!