samboll was trying to say about removing the code from sidebar.php , anyway heres the code without rss
<?php
$options = get_option('inove_options');
if($options['feed'] && $options['feed_url']) {
if (substr(strtoupper($options['feed_url']), 0, 7) == 'HTTP://') {
$feed = $options['feed_url'];
} else {
$feed = 'https://' . $options['feed_url'];
}
} else {
$feed = get_bloginfo('rss2_url');
}
?>
<!-- sidebar START -->
<div id="sidebar">
<!-- sidebar north START -->
<div id="northsidebar" class="sidebar">
<!-- feeds -->
<!-- showcase -->
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('north_sidebar') ) : ?>
<!-- posts -->
<!-- recent comments -->
<!-- tag cloud -->
<?php endif; ?>
</div>
<!-- sidebar north END -->
<div id="centersidebar">
<!-- sidebar east START -->
<div id="eastsidebar" class="sidebar">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('east_sidebar') ) : ?>
<!-- categories -->
<?php endif; ?>
</div>
<!-- sidebar east END -->
<!-- sidebar west START -->
<div id="westsidebar" class="sidebar">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('west_sidebar') ) : ?>
<!-- blogroll -->
<?php endif; ?>
</div>
<!-- sidebar west END -->
<div class="fixed"></div>
</div>
<!-- sidebar south START -->
<div id="southsidebar" class="sidebar">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('south_sidebar') ) : ?>
<!-- archives -->
<!-- meta -->
<?php endif; ?>
</div>
<!-- sidebar south END -->
</div>
<!-- sidebar END -->
So go to your ftp, wp-content/themes/inove
find sidebar.php
download to yor pc, backup in other folder
create new document with notepad, copy the code from above
save document as sidebar.php
upload into wp-content/themes/inove
here it is, rss’s gone ??