Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a custom tab for a fan page that need to display a JPEG image. I have an image in English and one in French. Is there a way to detect the user locale in FBML to display the right image?

I know how to do this server side using the Facebook fb_sig_locale param but I was planning on just using the Static FBML app which is much simpler than setting up a whole custom application.

share|improve this question

1 Answer

You can put constraint by country, for that use this:

<fb:restricted-to location="us">
  <img src="../us_image.gif"/>
<fb:else>
  <img src="../world_image.gif"/>
</fb:else>
</fb:restricted-to>

check here for more constraints possible in fb:restricted-to :

http://wiki.developers.facebook.com/index.php/Fb:restricted-to

share|improve this answer
Nice! I didn't know about that tag. But it still doesn't solve my problem since my main audience is French and English Canada. Quebec should be a country, it would make programming much simpler ;-) – Pierre Olivier Martel Apr 11 '10 at 15:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.