Fix: broken feed links at the top of the Ahimsa theme
July 4th, 2009 by ravi

The Ahimsa WordPress theme has a bug that renders the “Site” and “Comments” feed links at the top right unusable (by adding a “feed:” at the front of the URL). This will be fixed in the next release, but in the meantime, you can make the following change to overcome the problem.

Using the Admin section edit the Header (for details on how to edit the theme files including the header, see this previous post) and change the following lines (which appear about 2/3rd of the way into the header file, in Ahimsa 2.2):

<div id='rsslinks'>
    <div class='capsule'>
    <a href='feed:<?php bloginfo('comments_rss2_url'); ?>'>
    <img border='0' align='top' alt='Comments RSS'
        src='<?php print bloginfo('template_directory') . "/images/rss-icon.gif"; ?>'>
    <span title='Subscribe to the RSS feed for the comments on this site'>Comments</span>
    </a>
    </div>
    <div class='capsule'>
    <a href='feed:<?php bloginfo("rss2_url"); ?>'>
    <img border='0' align='top' alt='Site RSS'
        src='<?php print bloginfo('template_directory') . "/images/rss-icon.gif"; ?>'>
    <span title='Subscribe to the RSS feed for the posts on this site'>Site</span>
    </a>
    </div>
    <?php if( $options['showloginout'] == 1 ) { ?>
    <div class='capsule'>
    <?php wp_loginout(); ?>
    </div>
    <?php } ?>
</div>

And modify the “a href=” tags and remove the “feed:” part. Example, change:

    <a href='feed:<?php bloginfo("rss2_url"); ?>'>

to:

    <a href='<?php bloginfo("rss2_url"); ?>'>

Leave a Reply


While I love to hear (read) your comments, if you are looking specifically for help with one of my software projects (such as my WordPress themes), please do not add a comment here, but instead click on the link below: Using that link, you might even find a previous report of (and solution for) the issue!
XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="" highlight="">




SIDEBAR
»
S
I
D
E
B
A
R
«
»  Substance:WordPress   »  Style:Ahren Ahimsa