Remove tab filter menu?

Hi!

I want to remove the "All", "Mine", "Friends" tab filter menu. I made my own plugin where I filter some river activities, but I can't remove those tabs and I don't know why this code is not working:

elgg_unregister_menu_item('filter', array(
'name' => 'all',
'priority' => 500,
'contexts' => array('my_own_plugin_page'),
));

I also tried this code:

elgg_unregister_menu_item('filter', 'all');

So far no luck. I don't want to override the view, and the Elgg Docs show that code as one way to remove those tabs. Also previous elgg developers used those hooks, but still doesn't work for me.

Thanks!