Thread Starter
kitty
(@kitty)
No one?
As much as I like WordPress, I find it rather limited. I’m looking into Joomla now but I don’t know how easy it is to move 6 years of wordpress blogs into Joomla.
Thread Starter
kitty
(@kitty)
It must be possible to change the code ?
In the previous version of WordPress I changed the code in menu.php in the wp-admin folder but the menu.php has changed
OLD MENU FILE
// Menu item name
// The minimum level the user needs to access the item: between 0 and 10
// The URL of the item’s file
$menu[0] = array(__(‘Dashboard’), 0, ‘index.php’);
$menu[5] = array(__(‘Write’), 6, ‘post.php’);
NEW MENU FILE
$menu[0] = array(__(‘Dashboard’), ‘read’, ‘index.php’);
$menu[5] = array(__(‘Write’), ‘edit_posts’, ‘post.php’);
Thread Starter
kitty
(@kitty)
Thanks Kafkaesqui 😉
I have users on my blog that can see locked posts (using ViewLevel v.1.1.2 ) by logging themselves in. I would like to be able to have the option to auto lock posts after x long time (like I explained before) so they would automaticly be set to user level = 1 instead of user level 0 after x long time.
I know I suck at explaining stuff 😉