Recent Topics

1 May 31, 2010 20:05    

My b2evolution Version: Not Entered

Hi,

First post here. I'm running latest version. I don't want any categories on my blog. I set the _admin.php file to -1 but categories still appear. Do I need to do something else? Change the permissions on this file perhaps?

Thanks in advance for any help!

2 May 31, 2010 21:21

AFAIK You need at least one category, zero is not an option

3 Jul 09, 2010 12:54

raftman wrote:

My b2evolution Version: Not Entered

Hi,

First post here. I'm running latest version. I don't want any categories on my blog. I set the _admin.php file to -1 but categories still appear. Do I need to do something else? Change the permissions on this file perhaps?

Thanks in advance for any help!

I had the same problem - changing the _admin.php doesn't work. Here's how I got rid of them using the asevo skin.

skins > asevo > _item_block.inc.php

find this bit

$Item->categories( array(
'before' => ', '.T_('Categories').': ',
'after' => ' ',
'include_main' => true,
'include_other' => true,
'include_external'=> true,
'link_categories' => true,
) );

and change it to

$Item->categories( array(
'before' => ' '.T_(''),
//'after' => ' ',
'include_main' => false,
'include_other' => false,
'include_external'=> false,
'link_categories' => false,
) );


Form is loading...