To remove the possibility to rate blogs, remove the line
$this->addComponent('rate',$rateInfo);
in the file
ow_plugins->blogs->controllers->view.php.
To remove the highest rated tab on the blog page, remove the line
'top-rated'==>array('iconClass'=>'ow_ic_star'),
in the file
ow_plugins->blogs->controllers->blog.php.
To remove the possibility to rate photos, remove the line
$this->addComponent('rate',$photoRates);
in the file
ow_plugins->photo->controllers->photo.php.
To remove the highest rated tab on the photo page, remove the text 'toprated' in
$validLists=array('featured','latest','toprated','tagged');
both in functions getMenu() and viewList(), and remove the text 'ow_ic_star' in
$classes=array('ow_ic_push_bin','ow_ic_clock','ow_ic_star','ow_ic_tag');
in function getMenu(). These functions can be found in the file
ow_plugins->photo->controllers->photo.php.
Edit: For the latest version of this hack, see the end of this thread.