Can anybody help me figure out how to show a block on a specific page? I only want to show the block on the front page or the index. I don't want it shown when clicking on the buttons at the bottom to see other posts. I need it to be displayed only on the front page. Can anybody help?
<?php $match = FALSE; $url = request_uri(); if (drupal_is_front_page()) { $match = TRUE; } if (strpos($url, "node")) { $match = FALSE; } return $match; ?> In case anybody is interested