By damianrr on
I need to show a block in all node pages but one, which id is (for example) 144, i went to admin/build/block and select Show if the following PHP code returns TRUE (PHP-mode, experts only). and type:
if (arg(0) == "node" && arg(1) != "144")
{
return true;
}
but then i realize that i'll be using the path module for rewriting the URL's, and as i might expect it doesn't work with custom URLs ... any suggestion will be helpful ...