I have found a few posts on this subject and it appears as though most people are wanting to do the opposite of what I need. Currently the mission statement shows up on all paginated pages of the front page. My goal is to have mission show up only on the homepage however.

Here is the current code in the page.tpl.php file:

if ($mission) {

print $mission

}

I have tried the following with no success:

if ($is_front) {

print $mission

}

&

if ($page==0) {

print $mission

}

Thanks,

Keto

Comments

pbull’s picture

Check for the page in $_GET, to see if the value is not set or greater than 0:

php if ($mission && ($_GET['page'] == 0)) {
  print $mission;
}
kuldip zala’s picture

hi,

You can write in your page.tpl.php.
if($is_front) {
if ($mission): print '<div id="mission">'. $mission .'</div>'; endif;
}

Thanks,

Kuldip