• Resolved sagasu44

    (@sagasu44)


    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 https://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

Viewing 9 replies - 1 through 9 (of 9 total)
  • remove the rss widget from the sidebar?

    Thread Starter sagasu44

    (@sagasu44)

    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.

    Thread Starter sagasu44

    (@sagasu44)

    is anyone out there able to help?

    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 ??

    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.

    Thread Starter sagasu44

    (@sagasu44)

    thanks so much guys, took figaro’s advice as it was the quickest and worked a treat ??

    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 https://www.thedoodledaily.com

    Warren

    lehenryjr

    (@lehenryjr)

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

    ————-
    Later,
    LEHenryJr.

    Perhaps you might be interested in the look of my buttons.

    My site is johnoriordan.ie.

    I replaced the code pointed out by figaro with the following code.

    <div class="widget">
    <a href = "https://www.facebook.com/johnoriordan" target = "_blank"><img border = 0 src = "https://www.johnoriordan.ie/facebook-logo-small.png" title = "Follow me on Facebook">acebook</a>
    <a href = "https://www.twitter.com/thesraid" target = "_blank"><img border = 0 src = "https://www.johnoriordan.ie/twitter-logo-small.png" title = "Follow me on Twitter">witter</a>
    <a href = "https://www.google.com/profiles/100725177020104265928#buzz
    " target = "_blank"><img border = 0 src = "https://www.johnoriordan.ie/buzz-logo-small.png" title = "Follow me on Google Buzz">buzz</a></div>

    Obviously replace the links with links to your own Facebook, Twitter and Buzz profiles.

    And if you want to download the images to your own server please do. But don’t simply link to my images as I will have to pay for the bandwidth. Be nice. ??

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Remove default RSS button iNove’ is closed to new replies.