Forums

[resolved] Remove default RSS button iNove (9 posts)

  1. sagasu44
    Member
    Posted 2 months ago #

    Hi,
    I have just installed a plugin for subscribers with RSS, email & Twitter so now I have two rss buttons. How can I remove the one at the top which is there by default?

    Here's my blog http://budgetmama.com I think you'd agree 2 buttons looks bad, not to mention it takes up too much space.

    Am using iNove template

    cheers

    Sarah

  2. samboll
    moderator
    Posted 2 months ago #

    remove the rss widget from the sidebar?

  3. sagasu44
    Member
    Posted 2 months ago #

    there is no RSS widget in the sidebar. In fact there are no widgets for anything that was there by default, including the catagories, blog roll archives and meta so when times comes I won't know how to edit any of those things. The only widgets are the ones I have placed there myself, such at the RSS, Email and Twitter icons below the default RSS icon.

  4. sagasu44
    Member
    Posted 1 month ago #

    is anyone out there able to help?

  5. rate4d
    Member
    Posted 1 month ago #

    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 = 'http://' . $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 :)

  6. figaro
    Member
    Posted 1 month ago #

    Or, login to your wp-admin and select Appearance/Editor and then select sidebar.php on the right. In the editor find:

    <!-- feeds -->

    and delete everything from there to:

    <!-- showcase -->

    and save.

  7. sagasu44
    Member
    Posted 1 month ago #

    thanks so much guys, took figaro's advice as it was the quickest and worked a treat :)

  8. wbeinart
    Member
    Posted 1 month ago #

    Sarah

    Which plugin did you use for your RSS, e-mail, Twitter buttons? Does it have a facebook button as well. I want to do the same thing you did on my blog www.thedoodledaily.com

    Warren

  9. lehenryjr
    Member
    Posted 2 weeks ago #

    I’d like to know about that plug-in myself...

    -------------
    Later,
    LEHenryJr.

Reply

You must log in to post.

About this Topic