Not signed in (Sign In)
  • Support Us

    You want to support Sadish?
    You can
    Donate Now

  • Buy our Theme : NigaRila

    NigaRila
    NigaRila is a 3-column theme
    with a lot of features, created and supported by Sadish.
    NigaRila - Buy it now !


    Buy our Theme : Pal Nila

    PalNila
    PalNila is a 3-column theme
    with a lot of features, created and supported by Sadish.
    Pal Nila - Buy it now !








Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.

Welcome guest!
Want to take part in these discussions? Please Sign In or Apply for membership now!
    • CommentAuthorjeffespo
    • CommentTimeDec 21st 2009
     permalink
    I am looking to change the default RSS feed on the page to my Feedburner one. I've tried the plugin but it is not compatible with the theme. Is there a manual way to do this? Please let me know.

    Thanks.
    •  
      CommentAuthorSadish
    • CommentTimeDec 21st 2009
     permalink
    Where is your site located?
    • CommentAuthorjeffespo
    • CommentTimeDec 23rd 2009
     permalink
    It is on WP.org @ www.jeffesposito.com
    •  
      CommentAuthorSadish
    • CommentTimeDec 23rd 2009
     permalink
    you can open up header.php in the theme and edit the links. it seems you already changed the comments feed to go somewhere else.

    do you still need help?

    Sadish
    • CommentAuthorjeffespo
    • CommentTimeDec 23rd 2009
     permalink
    Yes, I am looking for where to swap out the code for the RSS to http://feeds.feedburner.com/jeffesposito/xAWW Please let me know. The comments were changed via the Disqus plugin
    •  
      CommentAuthorSadish
    • CommentTimeDec 23rd 2009
     permalink
    Look for this code in the header.php

    <div id="feedarea">
    <dl>
    <dt><strong><?php _e('Feed on','ml');?></strong></dt>
    <dd><a href="<?php bloginfo('rss2_url'); ?>"><?php _e('Posts','ml');?></a></dd>
    <dd><a href="<?php bloginfo('comments_rss2_url'); ?>"><?php _e('Comments','ml');?></a></dd>
    </dl>
    </div><!-- end id:feedarea -->


    and change it to


    <div id="feedarea">
    <dl>
    <dt><strong><?php _e('Feed on','ml');?></strong></dt>
    <dd><a href="http://feeds.feedburner.com/jeffesposito/xAWW"><?php _e('Posts','ml');?></a></dd>
    <dd><a href="<?php bloginfo('comments_rss2_url'); ?>"><?php _e('Comments','ml');?></a></dd>
    </dl>
    </div><!-- end id:feedarea -->


    Thanks
    Sadish
    • CommentAuthorjeffespo
    • CommentTimeDec 25th 2009
     permalink
    Thank you