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.

Hoping someone can hep with this...

I have four logos, I want a three of them to display if a user is on a certain page and I want the fourth logo to display if the user is on any other page.

I just can't get my head round conditional statements?

if (is_page('870')
  Show logo 1;
elseif (is_page('891')
  Show logo 2;
elseif (is_page('886')
  Show logo 3;
else
  Show logo 4;
share|improve this question
1  
What seems to be the problem? – Qasim Dec 10 '11 at 17:57
3  
you really should read the manual first... – Karoly Horvath Dec 10 '11 at 17:57
3  
... other than missing three close parentheses ... – RobertB Dec 10 '11 at 17:57
how a bout switch case default? – eureka Dec 10 '11 at 17:58

1 Answer

up vote 3 down vote accepted
if (!page4) {
  // show logo 1, 2, and 3
} else {
   // show logo 4
}

Perhaps, I misunderstand your grammar. You are missing parenthesis.

if (is_page('870')) 
  Show logo 1;
else if (is_page('891'))
  Show logo 2;
else if (is_page('886'))
  Show logo 3;
else
  Show logo 4;
share|improve this answer
Hi Trevor, thanks for answering my question. – StephenMeehan Dec 12 '11 at 8:02

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.