I have tried using the following PHP code -- though it removes the block off all pages:
- Code: Select all
if ($path = $_SERVER['REQUEST_URI']== 'homework-help' ) {
return FALSE;
} else {
return DL_block_show($taxonomies, $views);
Moderators: macek, egami, gesf
if ($path = $_SERVER['REQUEST_URI']== 'homework-help' ) {
return FALSE;
} else {
return DL_block_show($taxonomies, $views);

$in_array = '/homework-help';
if ($in_array == 'homework-help' ) {
return FALSE;
} else {
return DL_block_show($taxonomies, $views);
$myArray = array('homework-help', 'AnotherOne', 'YouCanAddMore');
$searchWord = 'homework-help';
if(in_array($searchWord, $myArray)
{
echo 'Done';
}
else
{
echo 'Try Later';
}

Users browsing this forum: No registered users and 1 guest