I have both aggregator and taxonomy modules enabled. When I add a term and assign it to a blog post, no RSS feed icon appears, as it does with the default Bartik theme. This is default taxonomy term behavior, and I'm not sure how a theme can prevent it, but there it is.

I can add the Syndicate block, but that's a feed for the whole site (/rss.xml), not the specific term (/taxonomy/term/1/feed).

CommentFileSizeAuthor
#1 missing_feed-1180704-1.patch759 bytesjn2
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

jn2’s picture

Status: Active » Needs review
FileSize
759 bytes

Seems the code to print the feed icons was missing. I made a patch, but you can just add one line to page.tpl.php. The first and last lines are lines 83 and 84 in the current file. The second line is the one to add.

              <?php print render($page['content']); ?>
              <?php print $feed_icons; //Add this line. ?>
            </div> <!-- /#content-inner -->	

This fixed it for me.